/* --- CTA BANNER SECTION --- */
.case-study-cta {
    background-color: var(--primary-blue); /* Rich Navy Blue background */
    padding: 70px 0; /* Slightly thinner than other sections so it acts like a banner */
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- THE TEXT CONTENT --- */
.cta-content {
    flex: 1;
    max-width: 700px;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    color: #d1d8ec; /* Light theme-matched blue-grey */
    line-height: 1.6;
    margin: 0;
}

/* --- THE WHITE BUTTON --- */
.cta-action {
    flex-shrink: 0; /* Keeps the button from getting squished by the text */
}

.btn-white-solid {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue); /* Navy text on white button */
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-white-solid:hover {
    background-color: #f8f9fa; /* Slight dim on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    padding-right: 24px; /* Slides the arrow effect */
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column; /* Stacks the text above the button */
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }
    
    .btn-white-solid {
        width: 100%; /* Makes the button full width on small phones */
        text-align: center;
    }
}