/* -------------------------------------------------
   DEGREE PROGRAMME SECTION
---------------------------------------------------*/

.degree-section {
    margin-top: 40px;
}

/* Section title */

.degree-title {
    text-align: center;
    font-size: 30px;
    color: #0F4C5C;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Each degree block */

.degree-item {
    background: #F4F6F8;
    border-left: 4px solid #FF7F50;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(15, 76, 92, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.degree-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 76, 92, 0.18);
}

/* Degree name */

.degree-name {
    font-size: 20px;
    color: #0F4C5C;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Duration */

.degree-duration {
    font-size: 16px;
    color: #2E2E2E;
    margin: 0;
    padding-left: 10px;
}

/* Responsive */

@media (max-width: 768px) {
    .degree-title {
        font-size: 24px;
    }

    .degree-name {
        font-size: 18px;
    }

    .degree-duration {
        font-size: 15px;
    }
}