/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navigation */
header {
    background-color: #FFF8EC;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-color: #FFF8EC;
    padding: 50px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero-image {
    width: 45%;
}

.hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.hero h1 span {
    color: #7039e6;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7039e6;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5c2fc6;
}

.btn-secondary {
    background-color: #4cacb9;
}

.btn-secondary:hover {
    background-color: #3e99a6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    width: 45%;
}

.about-content {
    width: 50%;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

/* Learning Approach Section */
.approach {
    background-color: #f0e6ff;
    padding: 80px 0;
    text-align: center;
}

.approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.approach p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.approach-img {
    margin: 40px 0;
}

.approach-img img {
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 90%;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-card {
    width: 30%;
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon.green {
    background-color: #e8f7e8;
}

.feature-icon.blue {
    background-color: #e8f1f7;
}

.feature-icon.yellow {
    background-color: #f7f5e8;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.courses h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.course-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.course-card {
    width: 32%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.course-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Stats Section */
.stats {
    background-color: #1e0c3c;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    width: 30%;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4cacb9;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #FFF8EC;
}

.benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefits-list {
    width: 50%;
    padding-right: 30px;
}

.benefits-image {
    width: 45%;
}

.benefit-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-number {
    background-color: #e8f1f7;
    color: #7039e6;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.benefit-content p {
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.testimonial-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 48%;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-info p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact {
    background-color: #f0e6ff;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    width: 45%;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #7039e6;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #5c2fc6;
}

/* Footer */
footer {
    background-color: #1e0c3c;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info {
    width: 33%;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.contact-details {
    width: 33%;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.legal {
    width: 33%;
}

.legal h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 10px;
}

.legal-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    display: none;
}

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

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-accept {
    background-color: #7039e6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-decline {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-container,
    .about-container,
    .benefits-container,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-image,
    .about-content,
    .benefits-list,
    .benefits-image,
    .contact-info,
    .contact-form {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-image {
        width: 100%;
        margin-top: 30px;
    }
    
    .feature-card {
        width: 48%;
        margin-bottom: 20px;
    }
    
    .course-card {
        width: 48%;
    }
    
    .footer-info,
    .contact-details,
    .legal {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .feature-card,
    .course-card,
    .testimonial-card {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}