@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner {
    width: 100%;
    height: 645px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #FFFFFF;
    overflow-x: hidden;
    padding-top: 80px;
    box-sizing: border-box;
}

.hero-container {
    height: 100%;
    margin-left: 80px;
    margin-right: 80px;
    width: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    text-align: center;
    text-shadow: 0 0 14.5px rgba(255, 255, 255, 0.52);
    margin: 0;
    position: absolute;
    top: 80px;
    width: 100%;
    left: 0;
    animation: fadeInUp 1.5s ease-out;
}

.hero-subtitle {
    text-align: center;
    position: absolute;
    top: 170px;
    width: 100%;
    left: 0;
    margin: 0;
    animation: fadeInUp 1.5s ease-out;
}

.hero-description {
    position: absolute;
    top: 392.5px;
    left: 0;
    width: 424.84px;
    text-align: left;
    animation: fadeInUp 1.5s ease-out;
}

.hero-action {
    position: absolute;
    top: 392.5px;
    right: 0;
}

.btn-datasheet {
    display: flex;
    padding: 12px var(--space-24);
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    border: 1px solid #184382;
    background: #184382;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    border-radius: 0;
    text-decoration: none;
    animation: fadeInUp 1.5s ease-out;
    cursor: pointer;
}

.btn-datasheet:hover {
    background-color: #416995 !important;
    border-color: #416995 !important;
}

.btn-datasheet.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-datasheet svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 1024.98px) {
    .hero-banner {
        height: 645px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding-top: 108px !important;
        box-sizing: border-box !important;
    }

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 40px !important;
        height: auto !important;
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        position: static !important;
        width: 100% !important;
        margin-bottom: 12px !important;
        top: auto !important;
        left: auto !important;
    }

    .hero-subtitle {
        position: static !important;
        width: 100% !important;
        margin-bottom: 24px !important;
        top: auto !important;
        left: auto !important;
    }

    .hero-description {
        position: static !important;
        width: 100% !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 32px !important;
        top: auto !important;
        left: auto !important;
        text-align: center !important;
    }

    .hero-action {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        top: auto !important;
        right: auto !important;
    }

    .btn-datasheet {
        width: 280px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        height: 645px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }

    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 80px 10px 0 10px !important;
        height: auto !important;
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
    }

    .hero-title {
        position: static !important;
        width: 100% !important;
        margin-bottom: 6px !important;
        top: auto !important;
        left: auto !important;
    }

    .hero-subtitle {
        position: static !important;
        width: 100% !important;
        margin-bottom: 24px !important;
        top: auto !important;
        left: auto !important;
    }

    .hero-description {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 24px !important;
        top: auto !important;
        left: auto !important;
        text-align: center !important;
    }

    .hero-action {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        top: auto !important;
        right: auto !important;
    }

    .btn-datasheet {
        min-width: 120px !important;
        width: auto !important;
    }
}