


.policy-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-image: url("/assets/Website/images/Images/Desktop/hero-image-desktop.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 144px 96px 88px 96px;
}

.policy-form-container {
    width: 1110px;
    min-height: 608px;
    height: auto;
    background-color: var(--white);
    border-radius: 24px;
    /* box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);  */
    padding: 24px 32px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.policy-business-container {
    width: 100%;
    min-height: 560px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.policy-title{
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.5px;
    font-weight: var(--bold);
    color: var(--primary);
}
.policy-text {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-weight: var(--semiBold);
    color: var(--tertirary);
    white-space: pre-line;
    text-align: start;
}


@media (width < 700px) {
    .policy-form {
        padding: 120px 24px 88px 24px;
    }

    .policy-form-container {
        width: 100%;
        padding: 24px 12px;

    }


    .policy-title{
        font-size: 24px;
        line-height: 32px;

    }
    .policy-text {
        font-size: 14px;
        line-height: 18px;

    }
}