/* COURSES PAGE CONTENT LAYOUT CONFIGS */
    .courses-container {
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .courses-hero {
        text-align: center;
        margin-bottom: 50px;
    }
    .courses-hero h2 {
        color: #0a2240;
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }
    .courses-hero h4 {
        color: #ff6b35;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    .courses-divider {
        width: 80px;
        height: 4px;
        background: #ff6b35;
        margin: 0 auto;
        border-radius: 2px;
    }
    .courses-lead-text {
        font-size: 17px;
        color: #4a5568;
        line-height: 1.7;
        text-align: center;
        max-width: 800px;
        margin: 30px auto 50px auto;
    }

    /* CARD GRID STRUCTURE */
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }
    .course-card {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border-top: 5px solid #0a2240;
        padding: 35px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(10, 34, 64, 0.12);
    }
    .course-title-area {
        margin-bottom: 20px;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 15px;
    }
    .course-card h3 {
        color: #0a2240;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 5px 0;
    }
    .course-duration {
        color: #ff6b35;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .course-description {
        color: #4a5568;
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 25px;
    }
    
    /* DETAILS METER MATRIX */
    .course-specs {
        background-color: #f7fafc;
        padding: 20px;
        border-radius: 6px;
        margin-top: auto;
    }
    .spec-item {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        padding: 8px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    .spec-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .spec-item:first-child {
        padding-top: 0;
    }
    .spec-label {
        font-weight: 700;
        color: #2d3748;
    }
    .spec-value {
        color: #4a5568;
        text-align: right;
    }

    /* MEDIA RESPONSIVE LAYOUT CONSTRAINTS */
    @media (max-width: 850px) {
        .courses-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .courses-hero h2 {
            font-size: 30px;
        }
    }