.hero-container-255513a2 {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    font-family: sans-serif;
    overflow: hidden;
}

.hero-overlay-255513a2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content-255513a2 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeIn-255513a2 1.5s ease-out;
}

.hero-title-255513a2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle-255513a2 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-buttons-255513a2 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons-255513a2 a {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary-255513a2 {
    background-color: #FACC15;
    color: #1a202c !important;
    border: 2px solid #FACC15;
}

.btn-primary-255513a2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
}

.btn-secondary-255513a2 {
    background-color: transparent;
    color: #fff !important;
    border: 2px solid #fff;
}

.btn-secondary-255513a2:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-metrics-255513a2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.metric-item-255513a2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #cbd5e1;
}

.metric-icon-255513a2 {
    color: #FACC15;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon-255513a2 svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #FACC15;
}

@keyframes fadeIn-255513a2 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-container-255513a2 {
        min-height: 100vh;
    }
    .hero-metrics-255513a2 {
        gap: 1rem;
    }
    .metric-item-255513a2 {
        width: 45%;
        justify-content: center;
    }
}