/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background-color: #003366; /* Primary dark blue */
    color: white;
    padding: 1rem 0;
    width: 100%;
    top: 0;
    z-index: 100;
    margin-bottom: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00cc66; /* Accent green */
}

/* Sections */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    margin-top: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
}

#hero {
    text-align: center;
    background: linear-gradient(to right, #003366, #005577);
    color: white;
    padding: 6rem 1rem 4rem;
    margin-top: 0;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#hero a {
    display: inline-block;
    background-color: #00cc66;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#hero a:hover {
    background-color: #009944;
}

/* About and Services */
#about, #services {
    margin-bottom: 2rem;
}

h2 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 2rem;
}

#services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

#services li {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

#services li:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

footer h2 {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 0.5rem 0;
    }

    section {
        padding: 2rem 1rem;
    }
}    margin-bottom: 1rem;
}