* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 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;
    border-radius: 12px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.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: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cookie-btn.accept-all {
    background: #4A90E2;
    color: white;
}

.cookie-btn.accept-all:hover {
    background: #357ABD;
}

.cookie-btn.preferences {
    background: #E3F2FD;
    color: #4A90E2;
}

.cookie-btn.preferences:hover {
    background: #BBDEFB;
}

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

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

.nav-logo {
    font-weight: 700;
    font-size: 24px;
    color: #2C3E50;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4A90E2;
}

.contact-btn {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #4A90E2;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 140px 5% 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        url(./assets/bg.png),
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%);
        background-size: cover;
}

.hero-content {
    max-width: 600px;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: white;
    color: #2a5298;
}

/* Why Section */
.why-section {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.why-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2C3E50;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C3E50;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Main Course Section */
.main-course {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    background: linear-gradient(135deg, #2C3E50, #3498db);
    color: white;
}

.course-content {
    flex: 1;
}

.main-course h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-course p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

.course-image {
    flex: 1;
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Experts Section */
.experts {
    padding: 100px 5%;
    text-align: center;
    background: white;
}

.experts h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2C3E50;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.expert {
    text-align: center;
}

.expert img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid #4A90E2;
}

.expert h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2C3E50;
}

.expert p {
    color: #4A90E2;
    font-weight: 500;
    font-size: 16px;
}

/* Modules Section */
.modules {
    padding: 100px 5%;
    background: #f8f9fa;
}

.modules h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2C3E50;
}

.modules-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
    color: white;
}

.module:hover {
    transform: translateX(10px);
}

.module-dark {
    background: linear-gradient(135deg, #2C3E50, #34495e);
}

.module-light {
    background: linear-gradient(135deg, #4A90E2, #5dade2);
}

.module-number {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    min-width: 80px;
    margin-right: 40px;
}

.module-info {
    flex: 1;
}

.module-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.module-info p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 16px;
}

.module-arrow {
    font-size: 24px;
    font-weight: bold;
    margin-left: 30px;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-content {
    flex: 1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Blog Section */
.blog {
    padding: 100px 5%;
    background: white;
}

.blog h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2C3E50;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-post h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C3E50;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background: linear-gradient(135deg, #2C3E50, #34495e);
    color: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    grid-column: 1;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    grid-column: 1;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: white;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #4A90E2;
}

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

.submit-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    width: fit-content;
}

.submit-btn:hover {
    background: white;
    color: #2C3E50;
}

/* Footer */
.footer {
    background: white;
    padding: 60px 5% 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin-bottom: 8px;
    color: #2C3E50;
    font-size: 16px;
}

.footer-info strong {
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

.footer-copyright {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    color: #2C3E50;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .contact-btn {
        display: none;
    }
    
    .hero {
        padding: 120px 5% 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .main-course,
    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .cta-section {
        flex-direction: column-reverse;
    }
    
    .features,
    .experts-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modules-list {
        gap: 15px;
    }
    
    .module {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .module-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .module-arrow {
        margin-left: 0;
        transform: rotate(90deg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact h2,
    .contact p {
        grid-column: 1;
    }
    
    .contact-form {
        grid-column: 1;
    }
    
    .submit-btn {
        align-self: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 15px 3%;
    }
    
    .hero,
    .why-section,
    .main-course,
    .experts,
    .modules,
    .cta-section,
    .blog,
    .contact {
        padding-left: 3%;
        padding-right: 3%;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .why-section h2,
    .experts h2,
    .modules h2,
    .main-course h2,
    .cta-section h2,
    .blog h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .features,
    .experts-grid,
    .blog-grid {
        gap: 30px;
    }
    
    .feature,
    .blog-post {
        padding: 25px 20px;
    }
    
    .module {
        padding: 20px;
    }
    
    .module-number {
        font-size: 28px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}

.succcess__btn{
    display: flex;
padding: 20px 40px;
justify-content: center;
align-items: center;
gap: 10px;
background: #009FE3;
color: #FFF;
text-align: center;
text-decoration: none;
width: 300px;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 19.2px */
text-transform: capitalize;
margin-top: 20px;
}