
.cont.opt {
    justify-content: space-between; 
    align-items: flex-start; 
    margin-top: 20px;
}

.cont.opt .opt-text {
    width: 50%; 
    margin-right: 0; 
    font-size: 16px;
    line-height: 1.8; 
    color: #444;
}

.cont.opt .opt-text h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.cont.opt .opt-text p {
    margin-bottom: 20px;
}

.cont.opt .opt-text strong {
    color: var(--primary-color); 
    font-size: 18px;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cont.opt .opt-text button.button.alt {
    width: 100%;
    background-color: #fff;
    color: var(--primary-color); 
    border: 1px solid var(--primary-color); 
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: none; 
}

.cont.opt .opt-text button.button.alt:hover {
    background-color: var(--primary-color); 
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 127, 172, 0.2);
}

.cont.opt .opt-form {
    width: 45%; 
    background: #ffffff;
    padding: 40px;
    border-radius: 20px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); 
    border: 1px solid #f0f0f0;
    position: sticky; 
    top: 30px;
}

.cont.opt .opt-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.preform-text {
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.opt-img:empty {
    display: none;
}

.opt-form .wpcf7 br {
    display: none;
}

.opt-form input.wpcf7-text,
.opt-form input.wpcf7-email {
    background-color: #F9F9F9;
}

.opt-form input.wpcf7-text:focus,
.opt-form input.wpcf7-email:focus {
    background-color: #fff;
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 4px rgba(0, 127, 172, 0.1);
    outline: none;
}

.opt-form input.wpcf7-submit {
    width: 100%;
    background-color: var(--primary-color) !important; 
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.opt-form input.wpcf7-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 127, 172, 0.2);
}

@media (max-width: 992px) {
    .cont.opt {
        flex-direction: column; 
        gap: 40px;
    }

    .cont.opt .opt-text {
        width: 100%;
    }

    .cont.opt .opt-form {
        width: 100%;
        padding: 30px;
        position: static; 
    }
}