.hero-section-edba1bf3 {
    position: relative;
    padding: 100px 20px;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-floats-edba1bf3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content-edba1bf3 {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.mh-edba1bf3-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.mh-edba1bf3-desc {
    font-size: 1.2rem;
    color: #A0B3D6;
    max-width: 600px;
}

.hero-floats-edba1bf3 .float-card {
    position: absolute;
    width: 250px;
    animation: specificFloat-edba1bf3 4s ease-in-out infinite alternate;
}

.hero-floats-edba1bf3 .float-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.hero-floats-edba1bf3 .float-card--1 { top: 10%; right: 10%; animation-delay: 0s; }
.hero-floats-edba1bf3 .float-card--2 { top: 40%; right: 5%; animation-delay: 1s; }
.hero-floats-edba1bf3 .float-card--3 { bottom: 20%; right: 15%; animation-delay: 2s; }
.hero-floats-edba1bf3 .float-card--4 { top: 20%; left: 10%; animation-delay: 1.5s; }

@keyframes specificFloat-edba1bf3 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}