/******************************************************************************/
/* CURRICULUM */
/******************************************************************************/
.curriculum-overview {
    max-width: 1000px;
    margin: 1rem auto !important;
    padding: .2rem .2rem !important;
    font-family: Roboto, Arial, sans-serif;
    background-color: #f5f8fb;
    border-radius: 10px;
}

/* Title (clickable collapsible header) */
.curriculum-overview_title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #003366;
    text-align: center;
    margin: 1rem 0;
    padding: 0.2rem 0;
    cursor: pointer;
    user-select: none;
}

/* Expanded state when user clicks title */
.curriculum-item.expanded {
    max-height: 3000px; /* large enough to show content */
    padding: 1rem 0; /* reveal padding only when expanded */
}
.curriculum-item {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    
}

/* Each course entry */
.curriculum-course {
    margin-bottom: 1.5rem;
   
        padding-left: 1rem;
    padding-right: 1rem;
}

/* Course title */
.curriculum-course__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #132153;
    line-height: 1.2;
}

/* Course details */
.curriculum-course p {
    margin: 0.3rem 0 0.9rem 0;
    line-height: 1.6;
    font-size: 1.2rem;

}

/* Strong text inside paragraphs */
.curriculum-course strong {
    color: #132153;
}

/* Divider between courses */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1rem 0;
}

/******************************************************************************/
/* CURRICULUM COURSE */
/******************************************************************************/
.curriculum-container {
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

.main-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-family: 'Roboto', 'Open Sans', 'Arial', 'Sans-Serif'
}

.curriculum-title {
    font-size: 24px;
    font-weight: 400;
    margin-top: 2rem;
}

.course-title {
    font-size: 20px;
    margin-top: 1rem;
    font-weight: 300;
}

.subjects-list {
    font-size: 18px;
    columns: 2;
    column-gap: 40px;
    margin-left: 1.2rem;
    list-style-type: disc !important;
}

.subjects-list li {
    list-style-type: disc !important;
}

/* Mobile */
@media (max-width: 768px) {
    .subjects-list {
        columns: 1;
    }

    .main-title {
        font-size: 26px;
    }

    .curriculum-title {
        font-size: 22px;
    }

    .course-title {
        font-size: 19px;
    }
}
