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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #7BBCC7;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-content p {
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2C5F66;
    color: white;
}

.cookie-btn.decline {
    background: #2C5F66;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Header */
.header {
    background: #2C5F66;
    padding: 20px 0;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2C5F66;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #7BBCC7;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2C5F66;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #2C5F66;
    color: white;
}

.about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: white;
}

.stats h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2C5F66;
    margin-bottom: 20px;
    text-align: center;
}

.stats > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C5F66;
    margin-bottom: 15px;
    line-height: 1.3;
}

.stat-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: #2C5F66;
    color: white;
}

.programs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.programs-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.programs-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.programs-text p {
    font-size: 14px;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #7BBCC7;
}

.team h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.member-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: white;
    font-size: 12px;
    line-height: 1.5;
}

/* Contact Section */
.contacts {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.contacts h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #7BBCC7;
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .programs-text h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team h2 {
        font-size: 24px;
    }
    
    .cookie-popup {
        width: 95%;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 20px;
    }
    
    .about h2,
    .stats h2,
    .programs-text h2,
    .team h2 {
        font-size: 20px;
    }
    
    .stat-item h3 {
        font-size: 16px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-content p {
        font-size: 12px;
    }
}