/* =============================
   MAIN SECTION
============================= */
.cta-focus-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

/* =============================
   LAYOUT DESKTOP
============================= */
.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-left {
    flex: 1;
}

.cta-title {
    line-height: 32px;
    font-size: 30px;
    font-weight: 700;
    color: #181E26;
    margin-bottom: 20px;
}

.cta-description p {
    font-size: 18px;
    line-height: 28px;
    color: #181E26;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #000000;
    color: #ffffff;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    font-family: Helvetica Neue;
    text-decoration: none;
}

.cta-right img {
    width: 380px;
    border-radius: 50%;
}


/* =============================
   MOBILE FIXES
   - Show IMAGE FIRST
   - Left-align all text
============================= */
@media (max-width: 768px) {

    /* Stack vertically */
    .cta-inner {
        flex-direction: column-reverse; /* IMAGE FIRST */
        text-align: left !important; 
        padding: 0 20px;
    }

    /* Image smaller */
    .cta-right img {
        width: 260px;
        margin-bottom: 30px;
    }

    /* Left align title + text + button */
    .cta-title,
    .cta-description,
    .cta-description p,
    .cta-button {
        text-align: left !important;
        margin-left: 0 !important;
    }

    /* Make button fit nicely */
    .cta-button {
        display: inline-block;
        margin-top: 15px;
    }
}
