.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/landingpage.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(#00000013, #000000);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 10px;
}

.hero-buttons .btn-what:hover {
    background-color: #147B09;
}

.btn-what {
    background: #20C20E;
    color: white;
}

.btn-text {
    background: white;
    color: #20C20E;
}

.btn-text:hover {
    background-color: #147B09;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}