body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7f8;
}

.hero {
    background: url('/assets/images/homepageHeroDesDec.webp') center/cover no-repeat;
    height: 420px;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero .green {
    color: #00b97a;
}

.search-box {
    background: #1b2a49;
    width: 70%;
    margin: 40px auto;
    padding: 25px;
    border-radius: 8px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    list-style: none;
    padding: 0;
}

.tabs li {
    padding: 10px 25px;
    cursor: pointer;
    background: #2e3f66;
    color: #fff;
}

.tabs li.active {
    background: #00b97a;
}

.search-box input {
    width: 70%;
    padding: 14px;
    border: none;
    border-radius: 4px;
}

.search-box button {
    padding: 14px 30px;
    background: #00b97a;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px;
}

.info-cards .card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}
