.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-container {
    padding: 0 12px;
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1440px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    max-width: 574px;
    gap: 24px;
}

.hero-subtitle {
    font-family: "Inter";
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
}

.hero-title {
    margin: 0;
    font-family: "Inter";
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-description {
    font-family: "Inter";
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-broker-note {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    padding-left: 10px;
}

.haulex-form {
    height: 830px !important;
    display: block;
}

.hero-form {
    position: absolute;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    width: 410px;
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-form {
        height: 590px !important;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-form {
        height: 500px !important;
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .hero-title {
        font-size: 42px;
    }
    .hero-form {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: auto;
        height: 590px !important;
    }
    .hero-container {
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 64px;
        margin-top: 18vw;
    }
    .hero-subtitle,
    .hero-title,
    .hero-description {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 8.4vw;
    }
    .hero-subtitle,
    .hero-description {
        font-size: 3.75vw;
    }
    .hero-form {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }
    .hero-container {
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        gap: 64px;
        margin-top: 22vw;
    }
    .hero-subtitle,
    .hero-title,
    .hero-description {
        text-align: center;
    }
    .haulex-form {
        max-width: 100% !important;
        margin: 0 auto;
    }
}