.course-container {
    border: 1px solid #00000012;
    border-radius: 10px;
    padding: 18px;
    background-color: #FFFFFF;
    margin-top: 30px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 400;
    color: #7C8493;
}

.header-info div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.hero-title {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 500;
    margin-bottom: 12px;
    color: #111827;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    max-width: 100%;
}

/* =========================
   Section Title
========================= */
.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

/* =========================
   Lesson Card
========================= */
.lesson-card {
    margin-bottom: 16px;
}

.lesson-header {
    width: 100%;
    background: linear-gradient(135deg, #374151, #1f2937);
    color: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: right;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.18);
}

.lesson-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.lesson-header p {
    font-size: 13px;
    color: #d1d5db;
}

.lesson-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* =========================
   Lesson Content
========================= */
.lesson-content {
    margin: 0 8px 20px;
    color: #4b5563;
}

.lesson-content h3 {
    font-size: 30px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 15px;
}

.lesson-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 15px;
}

.course-content p {
    font-size: clamp(16px, 1.5vw, 20px) !important;
    font-weight: 400 !important;
    color: #00000070 !important;
    margin-bottom: 30px !important;
}

.course-content img {
    max-width: 100%;
    height: auto;
}

.lesson-content ul {
    padding-right: 18px;
}

.lesson-content li {
    margin-bottom: 6px;
}

/* =========================
   CTA Section
========================= */
.cta-section {
    text-align: center;
    margin: 24px 0;
}

.cta-button {
    display: inline-block;
    background: #FE6C1D;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
    width: 40%;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}
.relevant-grid{
    border: 1px solid #00000012;
    border-radius: 10px;
    padding: 20px;
    background-color: #FFFFFF;
    margin-top: 80px;
}
.relevant-header h3{
    font-size: 20px;
    font-weight: 500;
}
.relevant-header a{
    font-size: 16px;
    font-weight: 500;
    color: #0C55C3;
}
.relevant-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.traincard{
    box-shadow: 7px 6px 18.6px 0px #0000000F;

}
/* =========================
   Responsive
========================= */
@media (max-width: 768px) {

    .hero,
    .lesson-content {
        padding: 16px;
    }

    .lesson-header {
        padding: 16px;
    }

    .lesson-header h3 {
        font-size: 16px;
    }

    .hero-title {
        font-size: 24px;
    }
    .header-content{
        flex-direction: column;
        align-items: flex-start;
    }
    
}

@media (max-width: 480px) {
    .course-page {
        padding: 16px 12px 40px;
    }

    .hero {
        border-radius: 12px;
    }

    .lesson-header {
        border-radius: 12px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
    .header-info{
        flex-direction: column;
        align-items: flex-start;
    }
    .header-content{
        gap: 15px;
    }
    .relevant-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}