#hero-section {
    position: relative;
    width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

#hero-section > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

#hero-section .overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    background: rgba(0, 0, 0, 0.55);
}

#hero-section .content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#hero-section h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fafafa;
}

#hero-section .animated-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin: 0 0 1rem;
    padding: 0;
}

#hero-section .animated-list li {
    position: relative;
    padding: 0.85rem 1rem;
    font-size: 1.20rem;
    line-height: 1.4;
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(1px);
}

#hero-section .call-bton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    background: #ff0000;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

#hero-section .call-bton:active {
    transform: scale(0.98);
}

@media (min-width: 600px) {

    #hero-section .overlay {
        padding: 3rem 2rem;
    }

    #hero-section .animated-list {
        gap: 1rem;
    }

    #hero-section .animated-list li {
        font-size: 1.05rem;
    }

    #hero-section .call-bton {
        width: auto;
        min-width: 280px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {

    #hero-section {
        min-height: 90vh;
    }

    #hero-section .overlay {
        min-height: 90vh;
        padding: 4rem 2rem;
    }

    #hero-section .content {
        max-width: 800px;
    }

    #hero-section h1 {
        margin-bottom: 2rem;
    }

    #hero-section .animated-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    #hero-section .animated-list li {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 70px;
        padding: 1rem;
    }
}

.animated-list {
    list-style: none;
    margin-bottom: 2rem;
}

.animated-list li {
    opacity: 0;
    transform: translateX(-30px);
    margin: 0.8rem 0;
    font-size: 1.7rem;
    animation: fadeIn 0.6s forwards;
}

.animated-list li:nth-child(1) { animation-delay: 0.2s; }
.animated-list li:nth-child(2) { animation-delay: 0.4s; }
.animated-list li:nth-child(3) { animation-delay: 0.6s; }
.animated-list li:nth-child(4) { animation-delay: 0.8s; }
.animated-list li:nth-child(5) { animation-delay: 1s; }
.animated-list li:nth-child(6) { animation-delay: 1.2s; }
.animated-list li:nth-child(7) { animation-delay: 1.4s; }
.animated-list li:nth-child(8) { animation-delay: 1.6s; }
.animated-list li:nth-child(9) { animation-delay: 1.8s; }


@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.call-bton {
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #hero-section h1 {
        font-size: 1.8rem;
    }

    .animated-list li {
        font-size: 1.5rem;
    }

    .call-bton {
        font-size: 1.6rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    #hero-section h1 {
        font-size: 1.5rem;
    }

    .animated-list li {
        font-size: 1.4rem;
    }

    .call-bton {
        font-size: 1.45rem;
        padding: 0.5rem 1rem;
    }
}

.header-actions {
    flex-shrink: 0;
    white-space: nowrap;
}