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

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

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

.header-inner {
    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 {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.nav a:hover {
    color: #8b4513;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-nav {
    background: #8b4513;
    color: #fff;
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #6d360f;
    color: #fff;
}

.btn-primary {
    background: #8b4513;
    color: #fff;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #6d360f;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

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

.hero h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.hero-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 70px 0;
}

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

.section-about {
    background: #fff;
}

.about-block {
    margin-bottom: 35px;
}

.about-block h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 10px;
}

.about-block p {
    color: #555;
    font-size: 1rem;
}

.section-contents {
    background: #f9f7f5;
}

.contents-list {
    list-style: none;
}

.contents-list li {
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.contents-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-size: 1.5rem;
    line-height: 1;
}

.contents-list strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

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

.section-audience {
    background: #fff;
}

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

.audience-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.audience-yes h3 {
    color: #2e7d32;
    border-color: #2e7d32;
}

.audience-no h3 {
    color: #c62828;
    border-color: #c62828;
}

.audience-col ul {
    list-style: none;
}

.audience-col li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.audience-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.audience-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}

.section-practice {
    background: #f9f7f5;
}

.section-practice p {
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.format-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.format-list li {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    color: #555;
    border: 1px solid #e0e0e0;
}

.section-faq {
    background: #fff;
}

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

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

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

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

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

.section-cta {
    background: linear-gradient(135deg, #8b4513 0%, #6d360f 100%);
    text-align: center;
    padding: 80px 0;
}

.section-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

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

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

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

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-name {
    font-weight: 600;
    font-size: 1rem;
}

.footer-contact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-cookie {
    background: #fff;
    color: #2c3e50;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-cookie:hover {
    background: #f5f5f5;
}

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

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

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