body {
    background-color: var(--light-blue);
}

/*waved lines*/
#topWavedLines {    
    top:-65px;
}

#bottomWavedLines{
    background: linear-gradient(60deg,#e6f0ff,#e6f0ff);
    top:67px;
}

 @media (max-width: 576px) {
    #topWavedLines {
        top:-85px;
    }
 }

 
/* Hero Section */               
.hero {
    color: white;
    padding: 4rem 0;
    text-align: center;            
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.other-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.other-section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.other-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

.other-section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: var(--light-blue);
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--gold);
    color: white;
    border-color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background-color: var(--menu-blue);
    color: #ffffff;
    padding: 3rem 0;
    margin-top: 4rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
} 