body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: white;
}

/* Header */
header {
    text-align: center;
    padding: 40px 10px;
    background: bl;
    border-bottom: 2px solid red;
}

header h1 {
    margin: 0;
    font-size: 36px;
    color: silver;
}

header p {
    color: red;
}

/* Navigation */
nav {
    text-align: center;
    background: #111;
    padding: 10px 0;
}

nav a {
    color: silver;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
}

nav a:hover,
.active {
    color: red;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px 20px;
}

.hero h2 {
    color: silver;
    font-size: 32px;
}

.hero p {
    font-size: 20px;
    color: red;
}

/* Content Section */
.content {
    width: 80%;
    margin: auto;
    padding: 30px 0;
}

.content h2 {
    color: red;
}

/* Services Boxes */
.service-box {
    background: #111;
    border-left: 4px solid red;
    padding: 15px;
    margin: 10px 0;
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: none;
    background: #222;
    color: white;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background: red;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    background: silver;
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #111;
    border-top: 2px solid red;
}

/* Logo Header */
.site-header {
    text-align: center;
    padding: 25px 10px;
    background: black;
    border-bottom: 2px solid red;
}

.logo {
    max-width: 220px;   /* adjust size here */
    height: auto;
}
