* {
    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;
}

a {
    color: #2d6a4f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.navbar {
    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: #2d6a4f;
}

.logo:hover {
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2d6a4f;
    text-decoration: none;
}

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

.nav-cta:hover {
    background: #1b4332;
}

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

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

.hero h1 {
    font-size: 2.5rem;
    color: #1b4332;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1rem;
    color: #40916c;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #2d6a4f;
    color: #fff;
}

.btn-primary:hover {
    background: #1b4332;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

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

.section {
    padding: 80px 20px;
}

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

.section-why {
    background: #fff;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-course {
    background: #f0f7f4;
}

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

.course-list li {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.course-list li:hover {
    transform: translateX(5px);
}

.list-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.course-list strong {
    display: block;
    color: #1b4332;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

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

.section-for-whom {
    background: #fff;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.column {
    padding: 30px;
    border-radius: 12px;
}

.column h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.column ul {
    list-style: none;
}

.column li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.column-yes {
    background: #d8f3dc;
}

.column-yes h3 {
    color: #1b4332;
}

.column-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: bold;
}

.column-no {
    background: #fde8e8;
}

.column-no h3 {
    color: #9b2c2c;
}

.column-no li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #c53030;
    font-weight: bold;
}

.section-steps {
    background: #f0f7f4;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.steps-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #40916c;
    font-style: italic;
}

.section-faq {
    background: #fff;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
}

.faq-question {
    color: #1b4332;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}

.section-cta {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 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-primary {
    background: #fff;
    color: #1b4332;
}

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

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

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

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

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

.footer-links a {
    color: #b7e4c7;
    margin: 0 15px;
}

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

.footer-contact {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

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

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

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

#cookie-accept {
    background: #2d6a4f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

#cookie-accept:hover {
    background: #40916c;
}

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

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

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

    .hero {
        padding: 120px 20px 60px;
    }

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

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

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

    .course-list li {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 60px 20px;
    }

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