body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* FIX LOGO DISPLAY */
.logo {
    max-width: 200px;
    display: block;
    margin: 20px auto;
}

header {
    background: #003366; /* Deep Blue from Logo */
    padding: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(to right, #003366, #0055A4);
    color: white;
    padding: 50px;
}

.cta-button {
    background: #FF6600;
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

#about, #services, #contact {
    padding: 50px;
    background: white;
    margin: 20px auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    margin: 10px 0;
}

form input, form textarea, form button {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
}

button {
    background: #003366;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background: #003366;
    color: white;
    padding: 10px;
}
