.cf7-custom-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-row {
    margin-bottom: 25px;
}

.form-row label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
}



.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00FFA6;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.privacy-check {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.privacy-check label {
    margin: 0 !important;
    font-size: 14px;
    font-weight: normal !important;
}

.privacy-check a {
    color: #00FFA6;
    text-decoration: underline;
}

.form-buttons {
    text-align: center;
    margin-top: 40px;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    width: 100%;
    height: 100px;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #00FFA6;
    color: #000;
}

.btn-confirm:hover {
    background: #22c55e;
}

.btn-back {
    background: #666;
    color: white;
}

.btn-back:hover {
    background: #444;
}

.btn-submit {
    background: #00FFA6 !important;
    color: #000 !important;
    padding: 15px 50px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer !important;
    min-width: 160px;
}

.btn-submit:hover {
    background: #22c55e !important;
}

.btn-home {
    background: #000;
    color: white !important;
    text-decoration: none;
    display: inline-block;
}

.btn-home:hover {
    background: #333;
}
.wpcf7-spinner{
    display: none !important;
}
.confirm-message {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.6;
}

.confirm-data {
    background: transparent;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.confirm-row {
    display: flex;
    border: none;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    background: transparent;
    color: #fff;
    padding: 20px;
    width: 35%;
    font-weight: bold;
    font-size: 14px;
}

.confirm-value {
    padding: 20px;
    width: 65%;
    color: #fff;
    white-space: pre-wrap;
}

.thanks-message {
    text-align: center;
    padding: 50px 20px;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-message .small-text {
    font-size: 14px;
    color: #666;
}

.mb30 {
    margin-bottom: 30px;
}
.wpcf7-response-output{
    display: none;
}

@media (max-width: 768px) {
    .confirm-row {
        flex-direction: column;
    }
    
    .confirm-label,
    .confirm-value {
        width: 100%;
    }
    
    .confirm-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        height: 68px;
    }
    .btn-submit {
        height: 68px;
    }
    .cf7-custom-form{
      padding: 0px;
    }
}
