.wcta-1599-container {
    background-color: #F8F5EF;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
}

.wcta-1599-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.wcta-1599-content {
    flex: 1;
}

.wcta-1599-visual {
    flex: 1;
}

.wcta-1599-eyebrow {
    color: #F39A2E;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.wcta-1599-heading {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
}

.wcta-1599-body {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.wcta-1599-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.wcta-1599-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.wcta-1599-btn-primary {
    background-color: #F39A2E;
    color: #FFFFFF;
}

.wcta-1599-btn-primary:hover {
    background-color: #D68322;
}

.wcta-1599-btn-secondary {
    background-color: transparent;
    color: #0A192F;
    border: 1px solid #0A192F;
}

.wcta-1599-btn-secondary:hover {
    background-color: rgba(10, 25, 47, 0.05);
}

.wcta-1599-reassurance {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.wcta-1599-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    position: relative;
}

.wcta-1599-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid rgba(10, 25, 47, 0.05);
    border-radius: 24px;
    z-index: -1;
}

.wcta-1599-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.wcta-1599-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
}

.wcta-1599-card-title {
    color: #0A192F;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.wcta-1599-card-text {
    color: #5A6A7D;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    padding: 16px;
    background-color: rgba(248, 245, 239, 0.5);
    border-radius: 8px;
    border-left: 3px solid #F39A2E;
}

@media (max-width: 991px) {
    .wcta-1599-grid {
        flex-direction: column;
    }
    .wcta-1599-container {
        padding: 40px;
    }
    .wcta-1599-heading {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .wcta-1599-container {
        padding: 24px;
    }
    .wcta-1599-actions {
        flex-direction: column;
    }
    .wcta-1599-btn {
        justify-content: center;
        width: 100%;
    }
}