.cu-solutions-section {
    padding: 2rem 1rem;
    background: #f9fbff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #01185E;
    text-align: center;
    margin-bottom: 0.25rem;
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

.cu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cu-card {
    background: white;
    border: 2px solid #001f3f;
    border-radius: 1rem;
    padding: 1.25rem;
    position: relative;
    transition: 0.25s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.cu-card:hover {
    transform: scale(1.02);
    background: #fff6e8;
}

.cu-card h2 {
    font-size: 1.1rem;
    color: #01185E;
    margin-bottom: 0.5rem;
}

.cu-card p {
    font-size: 0.95rem;
    color: #333;
}

.badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #A91F24;
    color: white;
    padding: 6px 10px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Modal Styling */
.cu-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cu-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-badge {
    background: #E2A52A;
    color: #01185E;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: bold;
}

.cu-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: #A91F24;
    cursor: pointer;
}

.cu-header {
    background: url('/images/businesssolutions/header.png') center/cover no-repeat;
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-header-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-header-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.cu-header-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cu-header-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}
