.hero {
    position: relative;
    min-height: 100vh;
    background-color: #333;
    background-image: url("/img/hero/hero.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 6%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}