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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.nav-cta {
    background: #2c5f2d;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-cta:hover {
    background: #234b24 !important;
}

.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 160px 20px 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #234b24;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
}

.btn-primary {
    background: #2c5f2d;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

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

.section {
    padding: 80px 20px;
}

.section-alt {
    background: #fff;
}

.section h2 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 40px;
    text-align: center;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

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

.feature-list li,
.audience-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.feature-list li:before,
.audience-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step h3 {
    color: #1b5e20;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

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

.faq-item {
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #1b5e20;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.section-cta {
    background: linear-gradient(135deg, #2c5f2d 0%, #1b5e20 100%);
    text-align: center;
    color: #fff;
}

.section-cta h2 {
    color: #fff;
}

.section-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.section-cta .btn {
    background: #fff;
    color: #2c5f2d;
}

.section-cta .btn:hover {
    background: #f5f5f5;
}

footer {
    background: #333;
    color: #fff;
    padding: 40px 20px;
}

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

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

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

.footer-contact {
    color: #aaa;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    flex-wrap: wrap;
}

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

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

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-links {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 140px 20px 80px;
    }

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

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 1.6rem;
    }

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