.evt-cta-section {
    background: linear-gradient(135deg, #FFEBA1, #FFCC00);
    padding: 80px 40px;
    border-radius: 20px;
    max-width: 1400px;
    margin: 100px auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.evt-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.evt-cta-left {
    flex: 1;
}

.evt-cta-left h3 {
    font-size: 30px;
    font-weight: 700;
}

.evt-cta-left p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.cta-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 25px;
    height: 240px;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-image.active {
    opacity: 1;
    transform: scale(1);
}

.evt-cta-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-tab {
    background: #fff;
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-tab.active {
    background: #000;
    color: #fff;
}

.cta-tab:hover {
    transform: translateY(-2px);
}

.cta-description-wrapper {
    position: relative;
    min-height: 60px;
}

.cta-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    padding: 0 10px;
}

.cta-description.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .evt-cta-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .evt-cta-left {
        margin-bottom: 30px;
    }

    .cta-image-wrapper {
        max-width: 220px;
        height: 180px;
    }

    .cta-description-wrapper {
        min-height: 70px;
    }
}
