/* ==========================================
   THEME VARIABLES & SECTION STYLES
=========================================== */
.cv-business-section {
    background-color: #D9E6FF;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 0;
}

/* ==========================================
   CARD STYLING
=========================================== */
.cv-theme-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(5, 26, 46, 0.05);
    border-top: 4px solid var(--color-2); /* Subtle top border to anchor the design */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 26, 46, 0.08);
}

/* Typography */
.cv-card-title {
    color: var(--color-2);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cv-card-highlight {
    /* Change #cda85f to #e63946 if you strictly want it to remain red */
    color: #cda85f; 
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.cv-card-text {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
/* ==========================================
   RESPONSIVE ADJUSTMENTS
=========================================== */
@media (max-width: 768px) {
    .cv-business-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cv-theme-card {
        padding: 2rem 1.5rem;
    }
    .cv-card-title {
        font-size: 1.4rem;
    }
    .cv-card-highlight {
        font-size: 0.95rem;
    }
}