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

:root {
    --color-bg: #faf8f5;
    --color-bg-alt: #f3efe9;
    --color-text: #3d3a36;
    --color-text-light: #6b665e;
    --color-primary: #8b7355;
    --color-primary-dark: #6d5a44;
    --color-accent: #c4a77d;
    --color-white: #ffffff;
    --color-border: #e5e0d8;
    --font-family: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: 0.2s;
}

.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.hero h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
}

.btn-small {
    font-size: 14px;
    padding: 10px 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--color-text);
    text-align: center;
}

.content-block p {
    margin-bottom: 20px;
    text-align: left;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.feature-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.check-list,
.x-list {
    list-style: none;
}

.check-list li,
.x-list li {
    padding: 12px 0 12px 32px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8f5a;
    font-weight: bold;
}

.x-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #a07060;
    font-weight: bold;
}

.steps {
    display: grid;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    background: var(--color-white);
    padding: 32px;
    border-radius: 12px;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 24px;
    top: 28px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 18px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.step p {
    color: var(--color-text-light);
    font-size: 16px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 40px 20px 0;
    background: none;
    border: none;
    font-family: var(--font-family);
    font-size: 18px;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 24px;
    color: var(--color-primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

.section-cta {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.section-cta h2 {
    color: var(--color-white);
}

.section-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.section-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.section-cta .btn-primary:hover {
    background: var(--color-bg);
}

.footer {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 48px 0;
    text-align: center;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--color-accent);
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    font-family: var(--font-sans);
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact {
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--color-bg-alt);
}

.footer-contact a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 14px;
    font-family: var(--font-sans);
    line-height: 1.5;
}

.cookie-banner .btn-small {
    flex-shrink: 0;
    background: var(--color-accent);
    color: var(--color-text);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
        gap: 16px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 48px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 48px 0;
    }

    .section h2 {
        font-size: 24px;
    }

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

    .step {
        padding-left: 24px;
        padding-top: 72px;
    }

    .step-number {
        top: 24px;
        left: 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
