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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fdfbf7;
}

a {
    color: #6b4423;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #e8e4dc;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3d2914;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #6b4423;
}

.btn-nav {
    background-color: #6b4423;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #8b5a2b;
    text-decoration: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #3d2914;
}

.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #3d2914;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    font-size: 1rem;
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #6b4423;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #8b5a2b;
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section h2 {
    font-size: 1.75rem;
    color: #3d2914;
    margin-bottom: 1.5rem;
}

.section p {
    margin-bottom: 1rem;
    color: #444;
}

.section-alt {
    background-color: #f5f2eb;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-alt > h2,
.section-alt > ul,
.section-alt > .steps {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list,
.audience-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li,
.audience-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.feature-list li::before,
.audience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b4423;
    font-weight: bold;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: #6b4423;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    color: #3d2914;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e8e4dc;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #3d2914;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    background-color: #3d2914;
    color: #fff;
    max-width: 100%;
    padding: 4rem 2rem;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #e8ddd0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #3d2914;
}

.cta-section .btn-primary:hover {
    background-color: #f5f2eb;
}

footer {
    background-color: #2c2318;
    color: #c9bfb0;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-name {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e8ddd0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #c9bfb0;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact a {
    color: #c9bfb0;
}

.footer-contact a:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3d2914;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: #e8ddd0;
}

#cookie-accept {
    background-color: #fff;
    color: #3d2914;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
}

#cookie-accept:hover {
    background-color: #f5f2eb;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid #e8e4dc;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}