* {
    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.7;
    color: #333;
    background-color: #fafdf7;
}

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3a7d44;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3a7d44;
}

.btn-nav {
    background: #3a7d44;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-nav:hover {
    background: #2d5f35;
}

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

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

.hero h1 {
    font-size: 2.5rem;
    color: #2d5f35;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    color: #666;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #3a7d44;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #2d5f35;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.section {
    padding: 70px 20px;
}

.section-alt {
    background: #fff;
}

.section h2 {
    font-size: 1.8rem;
    color: #2d5f35;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    margin-bottom: 20px;
    text-align: justify;
}

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

.course-list li,
.target-list li {
    padding: 15px 20px 15px 50px;
    position: relative;
    background: #f5faf5;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #3a7d44;
}

.course-list li::before,
.target-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    color: #3a7d44;
    font-weight: bold;
}

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

.step {
    background: #f5faf5;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0efe0;
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #3a7d44;
    color: #fff;
    border-radius: 50%;
    line-height: 45px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    color: #2d5f35;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

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

.faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e5efe5;
}

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

.faq-item p {
    color: #666;
    margin-bottom: 0;
    text-align: left;
}

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

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

.section-cta p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: center;
}

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

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

footer {
    background: #2d5f35;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

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

.footer-contact a {
    color: rgba(255,255,255,0.9);
}

.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: 9999;
    display: none;
}

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

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

.btn-cookie {
    background: #3a7d44;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-cookie:hover {
    background: #2d5f35;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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