body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #F5F5F5;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.hero {
    background: url('../img/hero.jpg') center/cover no-repeat;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.intro, .cta {
    text-align: center;
    padding: 60px 20px;
}

.highlights {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight {
    background: green;
    color: beige;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.highlight:hover {
    Background-color: lightgreen;
}

.link {
    color: #0B3D2E;
    font-weight: 600;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0B3D2E;
    color: white;
    margin-top: 40px;
}
