* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #171717;
}

a {
    text-decoration: none;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #171717;
}

.header-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    background: #171717;
    color: #ffffff;
    font-weight: 700;
}

/* HERO */

.hero {
    padding: 64px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
}

.eyebrow,
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #777777;
}

.hero h1 {
    max-width: 720px;
    margin: 14px 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.hero p {
    max-width: 650px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #5f5f5f;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    color: #171717;
    font-weight: 700;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    background: #f4f4f4;
}

/* CONTENT */

.content-section,
.district-section {
    padding: 72px 0;
}

.content-section {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.content-section h2,
.district-section h2,
.cta-box h2 {
    margin: 12px 0 18px;
    font-size: 30px;
}

.content-section p {
    max-width: 850px;
    font-size: 16px;
    line-height: 1.8;
    color: #5f5f5f;
}

/* DISTRICTS */

.district-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.district-card {
    padding: 22px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #ffffff;
}

.district-icon {
    font-size: 14px;
}

.district-card h3 {
    margin: 14px 0 8px;
    font-size: 18px;
}

.district-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #777777;
}

/* CTA */

.cta-section {
    padding: 20px 0 72px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px;
    border-radius: 16px;
    background: #f5f5f5;
}

.cta-box p {
    max-width: 700px;
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

/* FOOTER */

.site-footer {
    padding: 32px 0;
    border-top: 1px solid #eeeeee;
    text-align: center;
    color: #777777;
    font-size: 13px;
}

.site-footer p {
    margin: 6px 0;
}

/* MOBILE */

@media (max-width: 800px) {

    .hero {
        padding: 40px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 520px) {

    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-button {
        padding: 0 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .district-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 26px;
    }
}
