body {
    background-color: #f0f5f9;
    background-image:
        radial-gradient(circle at 0% 0%, #badef4 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #bbe4d4 0%, #ddf5f7 40%, transparent 60%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.solution-form-section {
    margin: 8rem auto;
    padding: 4rem 6rem;
    position: relative;
    z-index: 1;
}

.solution-form-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 120px;
}

.solution-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    gap: 12px;
}

.solution-content-wrapper h2 {
    font-size: 2.25rem;
    color: var(--color-primary-dark);
    font-weight: 500;
    margin: 0;
}

.solution-content-wrapper p {
    font-size: 1.125rem;
    color: var(--color-text-slate);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 32px;
}

.solution-img-wrapper {
    width: 100%;
    height: 500px;
}

.solution-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.solution-form-section .request-modal-card {
    flex: 1;
    max-width: 100%;
    width: 100%;
    max-height: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .solution-form-container {
        flex-direction: column;
    }
}

/* Multi Select Dropdown CSS */
.multi-select-dropdown {
    position: relative;
}

.multi-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    width: 100%;
    background-color: var(--color-white, #fff);
    color: var(--color-text-main, #222);
}

.multi-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: var(--color-white, #fff);
    border: 1px solid var(--color-border-input, #dce0e4);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    flex-direction: column;
    padding: 8px 0;
}

.multi-select-menu.active {
    display: flex;
}

.multi-select-menu .checkbox-item {
    padding: 8px 16px;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.multi-select-menu .checkbox-item:hover {
    background-color: var(--color-bg-light-blue-hover, #f0f7ff);
}


@media (max-width: 600px) {

    .solution-form-section {
        margin: 100px auto 32px auto;
        padding: 16px;
    }

    .solution-content-wrapper {
        display: none;
    }
}