    /* Hero Section */
.hero-section {
    background: #35bcbe;
    color: #fff;
    padding: 80px 20px;
    border-radius: 12px;
    margin-bottom: 50px;
    margin-top: 80px;
}

.hero-section h1 {
    font-weight: 700;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #253237 ;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.capacity-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.cta-section {
    background: #35bcbe;
    color: #fff;
    padding: 50px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 80px;
}

.cta-btn {
    background: #fff;
    color: #0d6efd;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.capacity-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.capacity-card:hover {
    transform: translateY(-8px);
}

.capacity-number {
    font-size: 35px;
    font-weight: 500;
    color: #35bcbe;
    margin-bottom: 10px;
}

.capacity-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.locationcont .styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.locationcont .styled-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Blue circle icon */
.locationcont .styled-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #35bcbe;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
}