* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #18332a;
    background: #fff8df;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #0d4f30;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(13, 79, 48, 0.16);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 800;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    font-size: 14px;
    font-weight: 800;
}

.nav-links a,
.footer-links a {
    color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover,
.footer-links a:hover {
    color: #ffd447;
}

.hero {
    padding: 68px 0 36px;
    background:
        linear-gradient(135deg, rgba(13, 79, 48, 0.94), rgba(20, 122, 63, 0.78)),
        url("foto2/herobackground.webp") center/cover;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 14px;
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 212, 71, 0.18);
    color: #fff3a3;
    font-size: 14px;
    font-weight: 800;
}

h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.content {
    padding: 42px 0 64px;
}

.policy-card {
    border: 1px solid rgba(24, 51, 42, 0.14);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 42px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 79, 48, 0.12);
}

.policy-card h2 {
    margin: 28px 0 8px;
    color: #0d4f30;
    font-size: 24px;
    line-height: 1.2;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p,
.policy-card li {
    color: #4f6258;
}

.policy-card ul {
    padding-left: 22px;
}

.cta-box {
    margin-top: 28px;
    border: 1px solid rgba(20, 122, 63, 0.18);
    border-radius: 8px;
    padding: 18px;
    background: #f5ffe8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px 15px;
    background: #147a3f;
    color: #ffffff;
    font-weight: 800;
}

.footer {
    padding: 34px 0;
    background: #092e20;
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) minmax(180px, 0.7fr);
    gap: 22px;
    align-items: start;
    font-size: 14px;
}

.footer strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
}

.footer span {
    color: #ffd447;
    font-weight: 800;
}

.footer small {
    color: rgba(255, 255, 255, 0.66);
}

.footer-copy {
    text-align: right;
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 22px, 980px);
    }

    .nav {
        flex-direction: column;
        justify-content: center;
        padding: 12px 0;
        text-align: center;
    }

    .nav-links,
    .footer-links {
        justify-content: center;
    }

    .hero {
        padding: 52px 0 30px;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}
