/* Non-critical CSS loaded asynchronously */
.section-title { 
    color: var(--primary-navy); 
    margin-bottom: 3rem; 
    position: relative; 
    padding-bottom: 1rem; 
}
.section-title:after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 80px; 
    height: 4px; 
    background-color: var(--accent-orange); 
}
.camp-card { 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transition: all 0.3s; 
    border: none; 
}
.camp-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
}
.camp-header { 
    background-color: var(--primary-navy); 
    color: white; 
    padding: 1.5rem; 
}
.camp-price { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--accent-orange); 
}
.capacity-bar { 
    height: 10px; 
    background-color: #E9ECEF; 
    border-radius: 5px; 
    overflow: hidden; 
}
.capacity-fill { 
    height: 100%; 
    background-color: #28A745; 
    border-radius: 5px; 
}
.benefit-icon { 
    width: 70px; 
    height: 70px; 
    background-color: rgba(26,35,126,0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem; 
    color: var(--primary-navy); 
    font-size: 1.8rem; 
}
.form-section { 
    background-color: var(--light-bg); 
    padding: 5rem 0; 
}
.form-card { 
    background-color: white; 
    border-radius: 15px; 
    padding: 2.5rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}
.age-info { 
    background-color: rgba(40,167,69,0.1); 
    border-left: 4px solid #28A745; 
    padding: 1rem; 
    border-radius: 0 8px 8px 0; 
    margin-top: 1rem; 
    display: none; 
}
.footer { 
    background-color: var(--primary-navy); 
    color: white; 
    padding: 4rem 0 2rem; 
}
@media (max-width: 576px) { 
    .form-card { padding: 1.5rem; } 
}