:root {
    --navy: #0a2342;
    --teal: #1f8a70;
    --white: #ffffff;
    --gold: #d4a24e;
    --light: #f4f7fb;
    --dark: #1a1a1a;
    --text: #2d2d2d;
    --muted: #6b7280;
    --border: #d1d5db;
    --shadow: rgba(10, 35, 66, 0.12);
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Work Sans', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--navy);
}

.brand__title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand__tagline {
    font-size: 0.85rem;
    color: var(--muted);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -7px;
}

.nav-toggle-icon::after {
    top: 7px;
}

.site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    font-weight: 500;
    color: var(--navy);
    padding: 0.5rem 0;
    display: inline-block;
}

.site-nav a.is-active {
    color: var(--teal);
    border-bottom: 2px solid var(--teal);
}

.hero {
    padding: 4rem 0;
}

.hero--split .hero__container {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.hero__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

.hero__content p {
    margin-bottom: 1rem;
    color: var(--text);
}

.hero__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.hero__list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.hero__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero__meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero__visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(10, 35, 66, 0.18);
}

.section {
    padding: 4rem 0;
}

.section--light {
    background: var(--light);
}

.section--accent {
    background: linear-gradient(135deg, rgba(31, 138, 112, 0.08), rgba(212, 162, 78, 0.12));
}

.section__header {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.section__header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section__header p {
    color: var(--text);
}

.stats-grid,
.card-grid,
.pillars-grid,
.service-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stat-card,
.info-card,
.pillar-card,
.service-card {
    padding: 1.75rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 30px var(--shadow);
    border: 1px solid rgba(10, 35, 66, 0.08);
}

.stat-card h3,
.info-card h3,
.pillar-card h3,
.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.3rem;
}

.split-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-grid--reverse {
    direction: rtl;
}

.split-grid--reverse > * {
    direction: ltr;
}

.list-block {
    margin: 1.5rem 0;
    background: rgba(10, 35, 66, 0.04);
    border-radius: 14px;
    padding: 1.5rem;
}

.list-block h3 {
    margin-top: 0;
    color: var(--navy);
}

.list-block ul {
    margin: 0;
    padding-left: 1.2rem;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    padding: 1.5rem;
    border-left: 3px solid var(--teal);
    margin-left: 1rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 24px var(--shadow);
}

.timeline li h3 {
    margin-top: 0;
    color: var(--navy);
    font-size: 1.2rem;
}

.timeline--horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.timeline--horizontal .timeline__item {
    border-left: none;
    border-top: 3px solid var(--teal);
    padding-top: 1.5rem;
}

.timeline--vertical .timeline__item {
    border-left: 3px solid var(--teal);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline__item h3 {
    margin-top: 0;
    color: var(--navy);
}

.section--cta {
    background: var(--navy);
    color: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--teal), var(--gold));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    box-shadow: 0 18px 40px rgba(10, 35, 66, 0.25);
}

.cta-card--inline {
    background: var(--teal);
}

.cta-card__content h2 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-card__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.button {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.button--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.button--primary:hover,
.button--primary:focus {
    background: #07172c;
    border-color: #07172c;
    text-decoration: none;
}

.button--ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.button--ghost:hover,
.button--ghost:focus {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.button--ghost.button--dark {
    color: var(--navy);
    border-color: var(--navy);
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 2rem;
}

.site-footer a {
    color: var(--white);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.policy-page h1 {
    font-size: 2.2rem;
    color: var(--navy);
}

.policy-page h2 {
    color: var(--navy);
    font-size: 1.6rem;
}

.policy-page ul {
    padding-left: 1.2rem;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 18px 40px var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--teal);
    border-color: var(--teal);
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
}

.form-feedback {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    font-weight: 500;
}

.form-feedback--error {
    background: rgba(220, 53, 69, 0.12);
    color: #a61e2a;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.form-feedback--success {
    background: rgba(31, 138, 112, 0.12);
    color: var(--navy);
    border: 1px solid rgba(31, 138, 112, 0.4);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(10, 35, 66, 0.25);
    padding: 1.5rem;
    display: none;
    z-index: 200;
}

.cookie-banner__content h2 {
    margin-top: 0;
    color: var(--navy);
    font-size: 1.4rem;
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-banner--visible {
    display: block;
}

.cookie-banner--hidden {
    display: none !important;
}

@media (max-width: 960px) {
    .hero--split .hero__container,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .timeline--horizontal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        min-height: 64px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

    .nav-toggle-label {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: var(--navy);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .site-nav a {
        color: var(--white);
        font-size: 1.5rem;
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__meta {
        flex-direction: column;
    }

    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero__content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-card__actions {
        flex-direction: column;
        width: 100%;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}