/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary {

    color: white;
    padding: 1.2rem 2.4rem;

    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    border-radius: 8px;
background: #F97316;
}

.btn-primary:hover {
    background: #4338CA;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 2.4rem;
    border: 0.2rem solid white;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.btn-secondary:hover {
    background: white;
    color: #4F46E5;
}

.btn-outline {
    background: transparent;
    color: #4F46E5;
    padding: 1.2rem 2.4rem;
    border: 0.2rem solid #4F46E5;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.4rem;
}

.btn-outline:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-0.2rem);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: 0.6rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #4338CA;
}

.cookie-btn.decline {
    background: #f3f4f6;
    color: #666;
}

.cookie-btn.decline:hover {
    background: #e5e7eb;
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
    color: #4F46E5;
}

.logo img {
    width: 3.2rem;
    height: 3.2rem;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-menu a:not(.btn-primary):hover {
    color: #4F46E5;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    width: 2.4rem;
}

.mobile-menu-btn span {
    height: 0.3rem;
    background: #333;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
   background: linear-gradient(90deg, #2563EB 0%, #1E40AF 100%), rgba(0, 0, 0, 0.00);
    color: white;
    text-align: center;
    padding: 12rem 0 8rem;
    margin-top: 8rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1F2937;
}

.why-choose p {
    font-size: 1.7rem;
    color: #6B7280;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Course Modules Section */
.course-modules {
    background: #f9fafb;
    padding: 8rem 0;
}

.course-modules h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.7rem;
    color: #6B7280;
    margin-bottom: 5rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.modules-grid {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.module-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.8rem 3.2rem rgba(0, 0, 0, 0.12);
}

.module-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    background: #EEF2FF;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon img {
    width: 3rem;
    height: 3rem;
}

.module-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.module-card p {
    font-size: 1.5rem;
    color: #6B7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 5rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background: #4F46E5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.step p {
    font-size: 1.6rem;
    color: #6B7280;
    line-height: 1.6;
    max-width: 35rem;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    background: #f9fafb;
    padding: 8rem 0;
}

.testimonials h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem 2.4rem;
    border-radius: 1.2rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-header img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.4rem;
}

.testimonial-header span {
    font-size: 1.4rem;
    color: #6B7280;
}

.testimonial-card p {
    font-size: 1.6rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    text-align: center;
}

.pricing h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 5rem;
}

.pricing-card {
    background: white;
    padding: 4rem 2.4rem;
    border-radius: 1.2rem;
    border: 0.2rem solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #4F46E5;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4F46E5;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1F2937;
}

.price {
    margin-bottom: 3rem;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    color: #6B7280;
}

.amount {
    font-size: 4.8rem;
    font-weight: 700;
    color: #1F2937;
}

.period {
    font-size: 1.6rem;
    color: #6B7280;
}

.features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.features li {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.4rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: #1F2937;
    color: white;
    padding: 8rem 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item img {
    width: 2rem;
    height: 2rem;
}

.contact-item span {
    font-size: 1.6rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border: 0.1rem solid #374151;
    border-radius: 0.8rem;
    font-size: 1.5rem;
    background: #374151;
    color: white;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
    background: #4B5563;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.8rem;
    color: #4F46E5;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 3.2rem;
    height: 3.2rem;
}

.footer-section p {
    font-size: 1.5rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4F46E5;
}

.footer-bottom {
    border-top: 0.1rem solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #9CA3AF;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(2rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 4rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .step {
        flex: 1;
        max-width: 30rem;
    }

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

    .pricing-cards {
        flex-direction: row;
        align-items: end;
        gap: 3rem;
    }

    .pricing-card {
        flex: 1;
    }

    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        margin: 0;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 4.8rem;
    }

    .hero-content p {
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details {
        flex-direction: row;
        gap: 4rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-cards {
        max-width: 100rem;
        margin: 0 auto;
    }
}
.contact-details {
    display: flex
;
    flex-direction: column;
    gap: 2rem;
}
.active{
    display: flex;
}
@media (max-width: 768px) {
    .nav-menu{
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background: white;
        padding: 20px;

    }

}