  .fs-course-hero {
            position: relative;
            margin-bottom: 40px;
        }
        
        .fs-course-hero-image {
            position: relative;
        }
        
        .fs-course-hero-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }
        
        .fs-course-hero-content {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%);
            max-width: 600px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 8px;
            color: #333;
        }
        
        .fs-course-hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #000;
        }
        
        .fs-course-hero-content p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
            color: #000;
        }
        
        .fs-btn-primary {
            background-color: #8B0000;
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            color: white;
        }
        
        .fs-btn-primary:hover {
            background-color: #A52A2A;
            transform: translateY(-2px);
            color: white;
        }
        
        .fs-section-title {
            font-size: 2.8rem;
            text-align: center;
            margin: 50px 0 30px;
            font-weight: bold;
            line-height: 1.2;
        }
        
        .fs-section-content {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .fs-features-list, .fs-career-list {
            padding-left: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .fs-features-list li, .fs-career-list li {
            margin-bottom: 15px;
        }
        
        .fs-subsection-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 40px 0 20px;
        }
        
        .fs-facilities-list {
            padding-left: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .fs-facilities-list li {
            margin-bottom: 10px;
        }
        
        .fs-faq-title {
            font-size: 2.5rem;
            text-align: center;
            margin: 50px 0 30px;
            font-weight: bold;
        }
        
        .fs-faq-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #666;
        }
        
        .fs-accordion-button {
            font-weight: 600;
            padding: 15px 20px;
        }
        
        .fs-accordion-body {
            padding: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .fs-faq-cta {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        
        .fs-faq-cta p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .fs-course-hero-content h1 {
                font-size: 3rem;
            }
            
            .fs-section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .fs-course-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .fs-section-title {
                font-size: 2.2rem;
            }
            
            .fs-course-hero-image img {
                height: 500px;
            }
            
            .fs-course-hero-content {
                max-width: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .fs-course-hero-content h1 {
                font-size: 2rem;
            }
            
            .fs-section-title {
                font-size: 1.8rem;
            }
            
            .fs-course-hero-image img {
                height: 400px;
            }
            
            .fs-course-hero-content {
                position: relative;
                top: 0;
                left: 0;
                transform: none;
                max-width: 100%;
                margin-top: -100px;
                background: rgba(255, 255, 255, 0.95);
            }
            
            .fs-section-content, .fs-features-list, .fs-career-list, .fs-facilities-list {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .fs-course-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .fs-section-title {
                font-size: 1.6rem;
            }
            
            .fs-course-hero-image img {
                height: 350px;
            }
            
            .fs-course-hero-content {
                padding: 20px;
            }
            
            .fs-btn-primary {
                width: 100%;
            }
        }