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