* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f6f6f7;
    color: #202223;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.site-header,
.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px;
}

.brand {
    color: #10231e;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-nav a,
.site-footer {
    color: #5c5f62;
    text-decoration: none;
}

.hero,
.section,
.legal-hero,
.legal-content {
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 28px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: center;
    min-height: 520px;
    border: 1px solid #c7d8d1;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 128, 96, 0.14), rgba(44, 110, 203, 0.08) 58%, rgba(245, 196, 0, 0.12)), #ffffff;
    box-shadow: 0 18px 44px rgba(20, 83, 69, 0.12);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #d8f1e5;
    color: #006c55;
    font-size: 13px;
    font-weight: 700;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: #10231e;
    line-height: 1.12;
}

h1 {
    margin-bottom: 16px;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 0;
}

h2 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 680px;
    margin-bottom: 24px;
    color: #3f4f4a;
    font-size: 18px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #b8b8b8;
    border-radius: 8px;
    background: #ffffff;
    color: #202223;
    font-weight: 700;
    text-decoration: none;
}

.button-primary {
    border-color: #008060;
    background: #008060;
    color: #ffffff;
}

.hero-panel,
.legal-hero {
    border: 1px solid rgba(0, 108, 85, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(37, 49, 43, 0.1);
}

.hero-panel {
    padding: 22px;
}

.hero-panel img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
}

.panel-stats,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.panel-stats {
    margin-top: 18px;
}

.panel-stats div,
.feature-card,
.legal-content {
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
}

.panel-stats div,
.feature-card {
    padding: 16px;
}

.panel-stats strong {
    display: block;
    color: #073f33;
    font-size: 24px;
}

.panel-stats span,
.feature-card p,
.legal-content p,
.legal-hero p {
    color: #5c5f62;
}

.feature-card {
    border-left: 4px solid #008060;
}

.legal-content {
    padding: 28px;
}

.legal-content h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.legal-content p {
    margin-top: 0;
    margin-bottom: 24px;
}

@media (max-width: 760px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero,
    .panel-stats,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
