/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b77ef;
    --primary-light: #a39af1;
    --primary-dark: #6255c3;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #555555;
    --bg-light: #ffffff;
    --bg-purple: #c2b6ff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
    text-align: center;
}

.cookie-content h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--text-gray);
}

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

/* Header & Navigation */
.header {
    background-color: var(--bg-light);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--bg-purple);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

.primary-btn {
    background-color: white;
    color: var(--text-dark);
}

.primary-btn:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-content h3 {
    margin-bottom: 15px;
}

/* Course Content Section */
.course-content {
    padding: 80px 0;
    background-color: var(--bg-purple);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.module {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.module-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mission-image {
    width: 100%;
    max-width: 500px;
}

.mission-text {
    flex: 1;
}

.stats {
    margin-top: 30px;
}

.stats li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stat-circle {
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-purple);
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 180px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-image {
    width: 100%;
    max-width: 500px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--bg-purple);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: none;
    width: 150px;
}

.submit-btn:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--text-dark);
    color: var(--text-light);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.hero-content {
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.main-section{
    background: #A890FF;
    padding: 60px 0;
    color: #fff;
}

.main-section h2 {
    text-align: left;
}

/* Media Queries */
@media (min-width: 768px) {
    .hero-content {
        gap: 40px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modules {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-content {
        flex-direction: row;
    }
    
    .cta-content {
        flex-direction: row;
    }
    
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 30px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}