* {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #333;
}

.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1?q=80&w=2070') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    color: #f0f0f0;
    font-size: 1.5rem;
    font-weight: 300;
}

.offerings {
    padding: 60px 20px;
    text-align: center;
    background: #fafafa;
}

.offerings h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.offer-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1rem;
    color: #555;
}

.benefits {
    padding: 60px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.benefit-card {
    padding: 20px;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.about {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.info-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: left;
}

footer {
    padding: 25px;
    text-align: center;
    background: #111;
    color: #eee;
    margin-top: 40px;
}
