.content-section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f4f7f9;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.facility-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 20px;
    height: 100%;
}

.facility-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.custom-check-list {
    list-style: none;
    padding: 0;
}

.custom-check-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px dashed #ddd;
}

.custom-check-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #f0aa00;
}



.testimonial-sidebar {
    background: #f0aa00;
    padding: 40px;
    border-radius: 20px 0 20px 0;
    color: #fff;
    font-style: italic;
}




/* 2nd sec */
.dining-nutrition {
    padding: 80px 0;
    background: #fff;
}

.sub-heading {
    color: #f0aa00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.meal-features {
    margin-top: 30px;
}

.meal-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.meal-icon {
    font-size: 24px;
    background: #f8f9fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.rounded-large {
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Weekend Activity Cards */
.bg-soft-blue {
    background-color: #f0f5ff;
}

.activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card .card-body {
    padding: 25px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('../images/school-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: #f0aa00;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover { background: #d49600; color: #fff; }
.btn-outline:hover { background: #fff; color: #003366; }

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
}

/*.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f0aa00;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #003366;
    border: 2px solid #f0aa00;
    border-radius: 50%;
}

.time-stamp {
    font-weight: bold;
    color: #003366;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.activity-desc h4 {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    color: #333;
}

.safety-grid {
    margin-top: 25px;
}

.safety-item {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #f0aa00;
}

.safety-item strong {
    display: block;
    font-size: 1.1rem;
    color: #003366;
    margin-bottom: 5px;
}

.safety-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.rounded-shadow {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}*/