:root {
    --emerald: #2F8F5B;
    --emerald-light: #46A76F;
    --bronze: #C08E3B;
    --slate: #324048;
    --slate-light: #50616C;
    --white: #FFFFFF;
    --grey: #F4F6F7;
    --dark: #1F2A30;
    --font-primary: 'Poppins', sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: var(--grey);
    color: var(--slate);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

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

a:hover,
a:focus {
    color: var(--emerald);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: var(--dark);
    line-height: 1.3;
}

p {
    margin-top: 0;
}

ul, ol {
    padding-left: 20px;
}

section {
    padding: 80px 20px;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-light {
    background-color: var(--white);
    border-radius: 16px;
    padding: 80px 60px;
}

.section-dark {
    background-color: var(--slate);
    color: var(--white);
    border-radius: 16px;
    padding: 80px 60px;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-image-right,
.section-image-left {
    background-color: var(--white);
    border-radius: 16px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--slate-light);
}

.header-main,
.top-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background-color: var(--slate);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-bar-item {
    margin-right: 20px;
}

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(50, 64, 72, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo a {
    font-weight: 700;
    font-size: 24px;
    color: var(--emerald);
}

.main-navigation {
    position: relative;
}

.desktop-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.desktop-menu li a {
    font-weight: 500;
    color: var(--slate);
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.desktop-menu li a:hover,
.desktop-menu li a.active {
    border-color: var(--emerald);
    color: var(--emerald);
}

.nav-toggle {
    display: none;
}

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

.nav-toggle-label .burger-line {
    width: 24px;
    height: 2px;
    background-color: var(--slate);
    display: block;
    margin: 6px 0;
}

.mobile-menu {
    display: none;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.mobile-close {
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin: 20px 0;
    padding: 0 20px;
}

.mobile-menu li {
    margin-bottom: 18px;
}

.mobile-menu a {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 20px 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-inner {
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--slate-light);
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.hero-card {
    background-color: var(--white);
    border: 1px solid rgba(47, 143, 91, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.hero-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--emerald);
    display: block;
    margin-bottom: 8px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(50, 64, 72, 0.08);
    box-shadow: 0 10px 30px rgba(50, 64, 72, 0.08);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-transparent {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.metric-card {
    background-color: rgba(47, 143, 91, 0.12);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: var(--slate);
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--emerald);
    display: block;
    margin-bottom: 10px;
}

.timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    border-left: 4px solid var(--bronze);
    padding: 20px 20px 20px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.timeline-step {
    font-size: 14px;
    font-weight: 700;
    color: var(--bronze);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    color: var(--slate-light);
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--emerald);
    font-size: 24px;
    line-height: 1;
}

.numbered-list {
    counter-reset: list-counter;
    margin: 0;
    padding-left: 0;
}

.numbered-list li {
    counter-increment: list-counter;
    list-style: none;
    margin-bottom: 16px;
    padding-left: 50px;
    position: relative;
    color: var(--slate-light);
}

.numbered-list li strong {
    color: var(--slate);
}

.numbered-list li::before {
    content: counter(list-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--emerald);
    color: var(--white);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
    border: 1px solid rgba(50, 64, 72, 0.1);
    border-radius: 12px;
    padding: 28px;
    background-color: var(--white);
}

.section-contact {
    background-color: var(--white);
    border-radius: 16px;
    padding: 80px 60px;
}

.contact-info {
    padding: 20px;
}

.contact-form-wrapper {
    background-color: rgba(47, 143, 91, 0.06);
    border-radius: 12px;
    padding: 40px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-row label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate);
}

.form-row input,
.form-row textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(50, 64, 72, 0.2);
    font-size: 16px;
    font-family: var(--font-primary);
    background-color: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--emerald);
    outline: none;
}

.btn-primary {
    background-color: var(--emerald);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--emerald-light);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--white);
    color: var(--emerald);
}

.form-footnote {
    font-size: 14px;
    color: var(--slate-light);
}

.form-notice {
    background-color: rgba(47, 143, 91, 0.1);
    border: 1px solid rgba(47, 143, 91, 0.4);
    color: var(--emerald);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.site-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 20px 20px 20px;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-menus h4,
.footer-contact h4 {
    color: var(--bronze);
    margin-bottom: 12px;
}

.footer-menus ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menus li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 30px auto 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.section-legal {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    padding: 80px 60px;
}

.legal-content h2 {
    margin-top: 40px;
    font-size: 24px;
}

.legal-content ul li {
    margin-bottom: 12px;
    color: var(--slate-light);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--slate);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 2000;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .section-light,
    .section-dark,
    .section-contact,
    .section-legal {
        padding: 60px 40px;
    }
}

@media (max-width: 900px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .desktop-menu {
        display: none;
    }

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

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(31, 42, 48, 0.98);
        display: none;
        flex-direction: column;
        padding-top: 40px;
    }

    .nav-toggle:checked ~ .main-navigation .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .section-light,
    .section-dark,
    .section-contact,
    .section-image-left,
    .section-image-right,
    .section-legal {
        padding: 60px 24px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 16px;
    }

    .hero {
        padding: 100px 16px 60px 16px;
    }

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

    .cookie-banner {
        padding: 18px;
    }
}