/* Franchise Form Section */
.franchise-form {
    overflow: hidden;
}

.franchise-form__inner {
    display: flex;
    min-height: 848px;
}

.franchise-form__image {
    flex: 0 0 37%;
    max-width: 37%;
}

.franchise-form__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.franchise-form__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: var(--space-3xl) var(--space-2xl);
}

.franchise-form__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.franchise-form__headline {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-semibold);
    color: var(--color-blue);
}

.franchise-form__subheadline {
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--color-black);
}

.franchise-form__form-wrap {
    width: 100%;
    max-width: 601px;
    min-height: 927px;
}

@media (max-width: 1023px) {
    .franchise-form__inner {
        flex-direction: column;
        min-height: auto;
    }

    .franchise-form__image {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 300px;
    }

    .franchise-form__content {
        padding: 40px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .franchise-form__inner {
        flex-direction: row;
    }
    .franchise-form__image {
        flex: 0 0 35%;
        height: auto;
    }
    .franchise-form__content {
        padding: 40px 30px;
    }
}
