        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

      
       

        /* Hero Section */
        .course-heros {
            display: flex;
            align-items: center;
            min-height: 80vh;
            padding: 2rem 0rem;
            max-width: 1200px!important;
            margin: 0 auto;
            
            border-radius: var(--radius);
            margin-top: 1rem;
            margin-bottom: 0rem;
        }
        
        .hero-contents {
            flex: 1;
           
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
  
        .course-heros h1 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text);
            line-height: 1.2;
            font-weight: 600;
        }
        
        .course-heros h1 span {
            color: var(--primary);
        }
        
        .course-heros p {
            font-size: 1.1rem;
            color: var(--text-light);
        
          
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            font-size: 1rem;
      
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
         
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 70, 12, 0.4);
        }
        
        .secondary-button {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.8rem 3rem;
            font-size: 1rem;
     
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-weight: 500;
            margin-left: 1rem;
        }
        
        .secondary-button:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            border-color: var(--primary-dark);
            color: var(--primary-dark);
        }
        
        /* Course Container */
        .course-container {
          padding: 2rem 0rem;
            max-width: 1200px!important;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom:2rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 500;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-light);
       
            margin: 0 auto;
            font-size: 1rem;
        }
        
        /* Course Overview */
        .course-overview {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
            margin-bottom: 0rem;
        }
        
        .course-details {
            background-color: var(--bg);
            padding: 2.5rem;
           
        }
        
        .course-highlights {
            background-color: var(--bg);
            padding: 2rem;
        
            height: fit-content;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(245, 70, 12, 0.1);
        }
        
        .course-details p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.rem;
        }
        
        /* Curriculum */
        .curriculum {
            margin-bottom: 0rem;
        }
        
        .module {
            margin-bottom: 1.5rem;
            background-color: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(245, 70, 12, 0.1);
        }
        
        .module-header {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .module-header:hover {
            background-color: var(--primary-dark);
        }
        
        .module-header h3 {
            font-size: 1.1rem;
            font-weight: 400;
        }
        
        .module-content {
            padding: 1.5rem;
            display: none;
        }
        
        .module.active .module-content {
            display: block;
        }
        
        .module-lessons {
            list-style: none;
        }
        
        .module-lessons li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .module-lessons li:hover {
            color: var(--primary);
        }
        
        .module-lessons li:last-child {
            border-bottom: none;
        }
        
        .lesson-icon {
            margin-right: 1rem;
            color: var(--primary);
            font-weight: bold;
        }
        
        /* Highlights */
        .highlight-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .highlight-item:hover {
            background-color: rgba(245, 70, 12, 0.05);
        }
        
        .highlight-icon {
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-size: 1rem;
        }
        
        .highlight-content h4 {
            margin-bottom: 0.3rem;
            color: var(--text);
            font-weight: 600;
        }
        
        .highlight-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Pricing */
        .pricing {
            margin-bottom: 0rem;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .pricing-card {
            background-color: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(245, 70, 12, 0.1);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(245, 70, 12, 0.15);
        }
        
        .pricing-header {
            padding: 1.5rem;
            text-align: center;
            background-color: var(--primary);
            color: white;
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .pricing-duration {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .pricing-features {
            padding: 1.5rem;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.7rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--primary);
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--primary);
            padding: 4rem 2rem;
            color: white;
            margin: 4rem 0;
            border-radius: var(--radius);
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-slider {
            margin-top: 2rem;
        }
        
        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 1rem;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        
        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* FAQ */
        .faq {
            margin-bottom: 4rem;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            background-color: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(245, 70, 12, 0.1);
        }
        
        .faq-question {
            background-color: var(--bg-light);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: var(--primary-light);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .course-heros {
                flex-direction: column-reverse;
                text-align: center;
                padding-top: 4rem;
                gap: 2rem;
            }
            
            .hero-contents {
                padding-right: 0;
                margin-bottom: 3rem;
            }
            
            .hero-image img {
                transform: none;
            }
            
            .course-heros h1 {
                font-size: 2.5rem;
            }
            
            .course-hero p {
                margin: 0 auto 2rem;
            }
            
            .secondary-button {
                margin-left: 0;
                margin-top: 1rem;
                display: block;
            }
            
            .course-overview {
                grid-template-columns: 1fr;
            }
            
            .course-highlights {
                position: static;
            }
        }
        
        @media (max-width: 476px) {
            .course-heros h1 {
                font-size: 1.5rem!important;
            }
            
            .section-title h2 {
                font-size: 1.3rem!important;
            }
            
            .cta-button, .secondary-button {
                width: 100%;
                margin-left: 0;
                margin-top: 1rem;
            }
        }