:root {
    --bg: #FAF7F2;
    --text: #1C1C1E;
    --coral: #FF4D4D;
    --gold: #FFC857;
    --blue: #2D6CDF;
    --fog: #E8E8EA;
    --white: #ffffff;
    --font: "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    height: 50px;
}

.logo-footer {
    height: 100px;
    margin-bottom: 12px;
}

.nav-toggle {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

.main-nav a {
    font-weight: 600;
}

.burger {
    display: none;
    background: var(--coral);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.close-menu {
    display: none;
}

.hero {
    padding: 60px 0;
    background: var(--white);
}

.hero-small {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section {
    padding: 60px 0;
}

.section-alt {
    padding: 60px 0;
    background: var(--fog);
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--fog);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card h3 {
    margin: 16px 0 8px;
}

.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--fog);
}

.contact-form-section {
    background: var(--white);
}

.contact-form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--fog);
    border-radius: 6px;
    background: var(--white);
    font-family: var(--font);
}

.btn {
    background: var(--coral);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
}

.site-footer {
    background: var(--text);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.legal h1 {
    margin-bottom: 16px;
}

.legal h2 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.summary-box {
    background: var(--fog);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text);
    color: var(--white);
    padding: 16px;
    z-index: 20;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner a {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-grid, .two-columns {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        font-size: 1.2rem;
    }
    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }
    .burger {
        display: inline-block;
    }
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .card-grid, .faq {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}