  /* Hero Section */
  .hero {
    position: relative;
    background: linear-gradient(135deg, rgba(43,177,187,0.8), rgba(138,225,192,0.8)), url('../../../assets/images/hero/Oase-Sim-Only.webp') center/cover no-repeat;
    color: #fff;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;
    transition: 0.3s;
}
.hero .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
}