.cta-box-e86ca19b {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    gap: 20px;
}

.cta-box-e86ca19b:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.cta-content-e86ca19b {
    flex: 1 1 300px;
}

.cta-content-e86ca19b h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
}

.cta-content-e86ca19b p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}

.cta-buttons-e86ca19b {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-1-e86ca19b, .cta-btn-2-e86ca19b {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent; /* Prepare for border swap */
}

/* Original colors */
.cta-btn-1-e86ca19b,
.cta-btn-2-e86ca19b {
    background: transparent;
    color: #000;
    border-color: #000;
}

/* Hover Swap */
.cta-btn-1-e86ca19b:hover,
.cta-btn-2-e86ca19b:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-box-e86ca19b {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons-e86ca19b {
        justify-content: center;
    }
}