.cta-section {
    /* background-color: #fff; */
    padding: 5px 0;
    overflow: hidden;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-image-wrapper {
    flex: 0 0 280px;
    text-align: right;
}

.cta-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

.cta-content {
    flex: 1;
    text-align: center; 
}

.cta-title-so {
    font-size: 36px;
    font-weight: 700;
    color: #1a7b4f;
    margin-bottom: 0;
    line-height: 1.2;
}

.cta-title-waiting {
    font-size: 48px;
    font-weight: 700;
    color: #1a7b4f;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #3c946e;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    gap: 12px;
}

.cta-button:hover {
    background-color: #2e7a57;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button img {
    width: 32px;
    height: auto;
}

/* RTL Support */
[dir="rtl"] .cta-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-content {
    text-align: right;
}

[dir="rtl"] .cta-image-wrapper {
    text-align: left;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-container {
        gap: 30px;
    }
    .cta-title-so {
        font-size: 36px;
    }
    .cta-title-waiting {
        font-size: 48px;
    }
    .cta-button {
        font-size: 24px;
        padding: 12px 30px;
    }
    .cta-button img {
        width: 30px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column !important;
        text-align: center;
    }
    .cta-content {
        text-align: center !important;
    }
    .cta-image-wrapper {
        flex: 0 0 auto;
        text-align: center !important;
        width: 100%;
        max-width: 280px;
    }
    .cta-title-so {
        font-size: 28px;
    }
    .cta-title-waiting {
        font-size: 36px;
    }
    .cta-button {
        font-size: 20px;
        padding: 10px 25px;
    }
}
