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

body {
    font-family: 'Lato', 'Raleway', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #D32F2F;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #D32F2F;
}

.main-content {
    margin-top: 80px;
}

h1 {
    font-size: 46px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 25px;
    line-height: 1.2;
}

h2 {
    font-size: 35px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 20px;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

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

.hero h1 {
    max-width: 900px;
    margin: 0 auto 25px;
}

.hero p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-of-type {
    border-bottom: none;
}

.section-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.section-text {
    flex: 1;
}

.section-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.image-left {
    flex-direction: row;
}

.image-right {
    flex-direction: row-reverse;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #D32F2F, transparent);
    margin: 40px 0;
}

.disclaimer-box {
    background-color: #fff8f8;
    border-left: 4px solid #D32F2F;
    padding: 30px;
    margin: 40px 0;
}

.disclaimer-box h3 {
    color: #D32F2F;
    margin-bottom: 15px;
}

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

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

.faq-question {
    font-size: 22px;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 15px;
}

.faq-answer {
    color: #555;
}

.cta-section {
    background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
    padding: 60px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #D32F2F;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #B71C1C;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D32F2F;
}

.footer {
    background-color: #f5f5f5;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #D32F2F;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D32F2F;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 14px;
}

.educational-notice {
    background-color: #fff8f8;
    border: 2px solid #D32F2F;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    border-radius: 4px;
}

.educational-notice p {
    margin: 0;
    font-weight: 600;
    color: #D32F2F;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #D32F2F;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: #D32F2F;
    color: #ffffff;
    border: none;
}

.btn-accept:hover {
    background-color: #B71C1C;
}

.btn-learn-more {
    background-color: transparent;
    color: #D32F2F;
    border: 2px solid #D32F2F;
}

.btn-learn-more:hover {
    background-color: #ffebee;
}

@media (max-width: 992px) {
    h1 {
        font-size: 38px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section-content {
        flex-direction: column !important;
    }
    
    .section-image {
        max-width: 100%;
    }
    
    .nav ul {
        gap: 15px;
    }
    
    .nav a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 40px;
}

.policy-content h3 {
    margin-top: 30px;
}
