.cf-text-block {
    background: var(--Off-White);
    padding: clamp(20px, 7vw, 107px) 0 var(--spacing-large);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cf-text-container {
    max-width: 566px;
}

.cf-block-title {
    margin-top: 16px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    justify-content: center;
    padding: var(--spacing-large) 0 clamp(20px, 4vw, 30px);
}

.contact-form form.wpcf7-form.init {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 988px;
    width: 100%;
    column-gap: 78px;
}

.contact-form form p {
    flex: 0 100%;
    margin-top: 0;
}

.contact-form form p:nth-child(-n+7) {
    flex: 0 calc(50% - 39px);
    margin-bottom: 18px;
}

.contact-form form input.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    padding-bottom: 15px;
}

.contact-form textarea {
    width: 100%;
    height: 216px;
    margin-top: 37px;
    margin-bottom: 63px;
    padding: 15px 17px;
}

.contact-form textarea::placeholder {
    color: var(--Dark-Grey);
    font-size: 12px;
    font-weight: 600;
}

.contact-form textarea,
.contact-form input.wpcf7-form-control:not(.wpcf7-submit) {
    background: none;
    border: 1px solid #4D4E50;
}

.contact-form input.wpcf7-form-control:not(.wpcf7-submit)::placeholder {
    color: var(--Dark-Grey);
    font-weight: 600;
    font-size: 16px;
}

.contact-form span.wpcf7-list-item {
    margin-left: 0;
}

.contact-form.wpcf7-acceptance {
    display: flex;
    margin-bottom: 11px;
}

.contact-form form p:last-of-type {
    display: flex;
    margin-top: 37px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.contact-form .wpcf7-submit {
    border: none;
    cursor: pointer;
}

.contact-form span.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 35px;
}

.contact-form input[type="checkbox"] {
    height: 22px;
    width: 22px;
}

.contact-form .wpcf7-submit:disabled {
    opacity: 0.4;
}

@media (max-width: 992px) {

    .contact-form {
        padding-inline: var(--spacing-medium);
    }

}