/* Typography */
.subtitle-text {
    color: #8c2a30;
    font-size: 1rem;
    margin-bottom: 5px;
}

.main-heading {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 0;
    text-transform: uppercase;
}

.general-text {
    color: #222;
    margin-bottom: 15px;
}

/* Tabs Section */
.age-tabs-wrapper {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e3c790;
    margin-bottom: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Changed to style a button properly */
.age-tab {
    padding: 10px 25px;
    text-align: center;
    color: #baa270;
    text-decoration: none;
    margin-bottom: -1px;
    border: 1px solid transparent;
    min-width: 120px;
    background: transparent; /* Reset button bg */
    cursor: pointer;
}

.age-tab:hover {
    color: #8c2a30;
}

.age-tab.active {
    color: #8c2a30;
    border-top: 1px solid #e3c790;
    border-left: 1px solid #e3c790;
    border-right: 1px solid #e3c790;
    border-bottom: 1px solid #fff;
    background-color: #fff;
    font-weight: bold;
}

.age-tab .nas-text {
    display: block;
    text-transform: uppercase;
    font-weight: normal;
    margin-top: -3px;
}

/* Image Grid */
.gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Program List */
.program-heading {
    color: #8c2a30;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.curriculum-subheading {
    color: #8c2a30;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.curriculum-list-container {
    max-width: 500px;
    margin: 0 auto;
}

.curriculum-item {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #e3c790;
    color: #333;
    font-weight: bold;
}

.curriculum-item:last-child {
    border-bottom: 1px solid #e3c790;
}

@media (max-width: 768px) {
    .age-tab {
        padding: 10px 15px;
        min-width: 80px;
        font-size: 1rem;
    }
}