/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a1421;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #333333;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: #666666;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: white;
}

.cookie-btn.decline {
    background-color: #6b7280;
    color: white;
}

/* Header */
.header {
    background-color: #0a1421;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #0a1421;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #60a5fa;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #d1d5db;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 6px;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.hero-chart img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: #111827;
}

.courses h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px 20px;
    color: #ffffff;
}

.course-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 20px 15px 20px;
    color: #fbbf24;
}

.course-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    color: #d1d5db;
}

/* Program Section */
.program {
    padding: 80px 0;
    background-color: #0f172a;
}

.program h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.program-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.program-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d1d5db;
}

.program-modules {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.module h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.module p {
    font-size: 14px;
    line-height: 1.5;
    color: #d1d5db;
}

.program-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #1e3a8a;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid #3b82f6;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.faq-item p {
    font-size: 16px;
    color: #dbeafe;
}

/* Webinars Section */
.webinars {
    padding: 80px 0;
    background-color: #1e3a8a;
}

.webinars h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.webinar-card {
    background-color: #1e40af;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.webinar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.webinar-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 20px 15px 20px;
    color: #ffffff;
}

.webinar-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    color: #dbeafe;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1e40af;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #6b7280;
}

.submit-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

/* Footer */
.footer {
    background-color: #0a1421;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a1421;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .program-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .courses-grid,
    .webinars-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .courses h2,
    .program h2,
    .faq h2,
    .webinars h2 {
        font-size: 28px;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 120px 0;
}

.text-section h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.88px;
    vertical-align: middle;
    color: #FFF;
    text-align: center;
}

.text-section p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}