body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    background-color: #ffffff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-logo {
    width: 175px;
    height: auto;
}

.main-nav a {
    text-decoration: none;
    color: #1f2933;
    margin-left: 30px;
    font-weight: bold;
    font-size: 17px;
}

.main-nav a:hover {
    color: #0077b6;
}

main {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.hero,
.page-hero {
    background: linear-gradient(135deg, #003366, #0077b6);
    color: white;
    text-align: center;
    padding: 80px 30px;
    margin-top: 40px;
    border-radius: 18px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #dbeafe;
}

h1 {
    font-size: 52px;
    line-height: 1.15;
    margin: 20px 0;
}

.page-hero h1 {
    color: #ffffff;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
}

.tagline {
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
}

.section {
    margin: 70px 0;
}

.section h2,
.cta-section h2 {
    color: #003366;
    font-size: 34px;
    margin-bottom: 20px;
}

.section p,
.cta-section p,
.page-hero p {
    font-size: 18px;
}

.hero-actions {
    margin-top: 35px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    margin: 8px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.primary-button {
    background-color: #ffffff;
    color: #003366;
}

.secondary-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.highlight-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.highlight-card,
.service-card,
.service-detail-card {
    background-color: #f7f9fb;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    padding: 26px;
}

.service-detail-card {
    margin-bottom: 24px;
}

.highlight-card h3,
.service-card h3,
.service-detail-card h2 {
    color: #003366;
    margin-top: 0;
}

.cta-section {
    text-align: center;
    background-color: #f7f9fb;
    padding: 60px 30px;
    border-radius: 18px;
    margin: 80px 0;
}

.cta-section .primary-button {
    background-color: #003366;
    color: #ffffff;
}

.site-footer {
    text-align: center;
    padding: 35px;
    background-color: #f5f5f5;
    margin-top: 60px;
}

.site-footer a {
    color: #003366;
    text-decoration: none;
}

@media (max-width: 800px) {
    .header-inner {
        flex-direction: column;
    }

    .main-nav {
        margin-top: 20px;
    }

    .main-nav a {
        display: inline-block;
        margin: 8px 12px;
    }

    h1 {
        font-size: 36px;
    }

    .highlight-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}