* {
    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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    border-radius: 8px;
    border: 3px solid #2d1b69;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

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

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

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

.cookie-btn.accept:hover {
    background: #9f7aea;
}

.cookie-btn.reject {
    background: #e2e8f0;
    color: #4a5568;
}

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

/* Header */
.header {
    background: #2d1b69;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-pills {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

.nav-pills a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-pills a:hover,
.nav-pills a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: #2d1b69;
    color: white;
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.hero-image {
    order: 1;
}

.hero-text {
    order: 2;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #b794f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Courses Section */
.courses {
    background: #2d1b69;
    color: white;
    padding: 80px 0;
}

.courses h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.courses-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.course-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 3rem;
    line-height: 1;
}

.course-icon {
    margin-bottom: 1.5rem;
}

.course-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-card p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background: white;
    padding: 80px 0;
}

.benefits h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d1b69;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.bullet {
    color: #2d1b69;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: -0.2rem;
}

.benefit-item h3 {
    color: #2d1b69;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Events Section */
.events {
    background: #2d1b69;
    color: white;
    padding: 80px 0;
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

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

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.event-date {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-content p:last-child {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Process Section */
.process {
    background: white;
    padding: 80px 0;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.process-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d1b69;
}

.process-intro {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.process-steps {
    margin-bottom: 2rem;
}

.step {
    margin-bottom: 1.5rem;
}

.step h3 {
    color: #2d1b69;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background: #2d1b69;
    color: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-item {
    text-align: center;
}

.testimonial-item.center {
    order: 2;
}

.testimonial-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 0.9rem;
    font-weight: 500;
    font-style: normal;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d1b69;
}

.contact > .container > p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    max-width: 400px;
    margin: 0 auto 3rem;
    background: #2d1b69;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    display: grid;
    gap: 0.5rem;
}

.contact-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

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

.contact-form input:focus {
    outline: none;
    background: white;
}

.submit-btn {
    background: #b794f6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
}

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

.contact-info {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2d1b69;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-pills {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .courses h2,
    .benefits h2,
    .events h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .benefits-content,
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-item.center {
        order: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .courses,
    .benefits,
    .events,
    .process,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .course-card,
    .event-card {
        margin: 0 10px;
    }
    
    .benefits-content,
    .process-content {
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .testimonial-item img {
        width: 150px;
        height: 150px;
    }
    
    .contact-form-wrapper {
        margin: 0 10px 3rem;
        padding: 1.5rem;
    }
}