.links .content-container {
    width: 100%;
    padding-right: 36px;
}

.links .content-container textarea {
    height: 100px;
}

.links .content-container textarea,
.links .content-container input.wpcf7-form-control.wpcf7-text {
    padding: 6px 15px;
    border-radius: 5px;
    border: 1px solid rgba(33, 33, 33, 0.15);
    background: #F2F2F2;
    width: 100%;
    margin-bottom: 15px;
}

.links .content-container span.wpcf7-list-item-label,
.contact-checkbox label {
    color: #212121;
    font-family: var(--Lato);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: calc(100% - 27.5px);
}


.links .content-container .wpcf7-spinner {
    display: none;
}

.links .contact-checkbox p {
    align-items: center;
}

.links .contact-checkbox {
    display: unset;

    margin-bottom: 30px;
}

.links .links .content-container .wpcf7-list-item {
    margin: unset;
}

.links .links .content-container .wpcf7-list-item label,
.contact-checkbox p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 30px;
}

.links .links form .contact-checkbox p:last-child {
    margin: 0 0 30px;
}

.links .content-container .wpcf7-list-item {
    margin: unset !important;
}

.links .content-container input.btn-submit,
input.wpcf7-form-control.wpcf7-submit.has-spinner.contactsubmit {
    width: 160px;
    height: 45px;
}

.links .content-container input.btn-submit:hover,
.links input.wpcf7-form-control.wpcf7-submit.has-spinner.contactsubmit:hover {
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #212121;
    transition: var(--transition1);
    -webkit-transition: var(--transition1);
}

.links .content-container textarea::placeholder,
.links .content-container input.wpcf7-form-control.wpcf7-text::placeholder {
    color: var(--ColorLightGray);
    font-family: var(--lato);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.links .content-container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.links .content-container input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.links .content-container input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}


@media (max-width:767px) {
    .links .content-container {
        padding-right: 0;
    }

    .wpcf7-form-control-wrap {
        text-align: center;
        position: relative;
    }

    .links .content-container textarea,
    .links .content-container input.wpcf7-form-control.wpcf7-text {
        margin-bottom: 15px;
    }
}