.hero {
    background-color: #efefef;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    color: #fff;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    text-align: center;
}

.hero .cta-button {
    width: auto;
    padding: 0.8rem 2.5rem;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 20px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.badges img {
    max-width: 175px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
    cursor: pointer;
}

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

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .badges img {
        max-width: 130px;
    }

    .nav-links li,
    .nav-icons li {
        margin-left: 1rem;
    }
}

@media (max-width: 320px) {
    .badges {
        flex-wrap: wrap;
        gap: 0;
    }
}