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

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

.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-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border: 2px solid #C4621A;
}

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

.cookie-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

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

.btn-accept, .btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4A3A8A;
    color: white;
}

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

.btn-decline {
    background-color: #4A3A8A;
    color: white;
}

.btn-decline:hover {
    background-color: #3A2A7A;
}

/* Header */
.header {
    background-color: #C4621A;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    padding: 120px 0 80px;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url(./assets/bg.png);
    background-size: cover;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-button {
    background-color: white;
    color: #2C3E50;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.courses h2 {
    text-align: center;
    font-size: 36px;
    color: #C4621A;
    margin-bottom: 60px;
    font-weight: 600;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.course-image {
    height: 200px;
    overflow: hidden;
}

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

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 22px;
    color: #4A3A8A;
    margin-bottom: 15px;
    font-weight: 600;
}

.course-content p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-btn {
    background-color: #4A3A8A;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.course-btn:hover {
    background-color: #3A2A7A;
}

/* Why Vermund Section */
.why-vermund {
    padding: 80px 0;
    background: white;
}

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

.why-text h2 {
    font-size: 32px;
    color: #C4621A;
    margin-bottom: 25px;
    font-weight: 600;
}

.why-text > p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature {
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    line-height: 1.6;
    color: #666;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
}

/* Live Learning Section */
.live-learning {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.live-learning h2 {
    text-align: center;
    font-size: 36px;
    color: #C4621A;
    margin-bottom: 25px;
    font-weight: 600;
}

.live-learning > .container > p {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.live-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.live-image {
    height: 150px;
    overflow: hidden;
}

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

.live-card h3 {
    font-size: 20px;
    color: #4A3A8A;
    margin: 20px 20px 15px;
    font-weight: 600;
}

.live-card p {
    padding: 0 20px 25px;
    line-height: 1.5;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #C4621A;
    margin-bottom: 60px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #C4621A;
}

.faq-item h3 {
    font-size: 18px;
    color: #4A3A8A;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #C4621A;
    margin-bottom: 60px;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #C4621A;
}

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

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-card p {
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: white;
    background: url(./assets/bg2.png);
    background-size: cover;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background-color: #4A3A8A;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3A2A7A;
}

/* Footer */
.footer {
    background-color: #4A3A8A;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .courses h2,
    .live-learning h2,
    .faq h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-text h2 {
        font-size: 28px;
    }
    
    .courses-grid,
    .live-grid,
    .faq-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .courses h2,
    .live-learning h2,
    .faq h2,
    .testimonials h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .why-text h2 {
        font-size: 24px;
    }
    
    .course-card,
    .live-card,
    .faq-item,
    .testimonial-card {
        margin: 0 10px;
    }
    
    .cookie-content {
        padding: 20px 15px;
    }
}