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

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

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #8b6914;
}

.nav-cta {
    background: #8b6914;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #6d5410;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 15px;
}

.hero-info {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: #8b6914;
    color: #fff;
}

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

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

.section {
    padding: 80px 20px;
}

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

.section-why {
    background: #fff;
}

.section-why p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-program {
    background: #f5f0e6;
}

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

.program-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

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

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

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

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

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

.column-yes {
    background: #e8f5e9;
}

.column-no {
    background: #fce4ec;
}

.column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.column ul {
    list-style: none;
}

.column li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

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

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

.section-steps {
    background: #f5f0e6;
}

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

.step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #8b6914;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 15px;
}

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

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

.section-faq {
    background: #fff;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

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

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

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

.section-cta {
    background: linear-gradient(135deg, #8b6914 0%, #6d5410 100%);
    text-align: center;
}

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

.section-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta .btn-primary {
    background: #fff;
    color: #8b6914;
}

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

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

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

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

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-contact {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

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

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

.cookie-banner button {
    background: #8b6914;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cookie-banner button:hover {
    background: #6d5410;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

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

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

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