/* CTA Section Vertical Centering */

/* Ensure the CTA section has proper height for vertical centering */
.ctaSection {
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ctaSection .container {
    width: 100% !important;
}

.ctaSection .row {
    align-items: center !important;
    min-height: 80px !important;
    margin: 0 !important;
}

/* Left column (text) styling */
.ctaSection .col-md-7 {
    display: flex !important;
    align-items: center !important;
}

/* Right column (button) styling for perfect centering */
.ctaSection .col-md-5 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 80px !important;
}

/* Text styling adjustments */
.ctaText {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

/* Button positioning */
.ctaSection .qu_btn {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .ctaSection {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .ctaSection .col-md-5 {
        margin-top: 20px !important;
        justify-content: center !important;
    }
    
    .ctaText {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    .ctaSection .col-md-7 {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .ctaSection {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    
    .ctaSection .col-md-5 {
        justify-content: center !important;
        margin-top: 10px !important;
    }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .ctaSection {
        min-height: 140px !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .ctaSection .row {
        min-height: 100px !important;
    }
    
    .ctaSection .col-md-5 {
        min-height: 100px !important;
    }
}