/* Remove the spacing left behind by hidden titles */
.group-header {
    display: none !important;
}

/* Make cards perfectly uniform */
.service-card, .widget-card {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    transition: transform 0.2s ease-in-out;
}

/* Add a slight hover effect for a premium feel */
.service-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Ensure all white icons from previous steps stay bright */
.service-icon, .widget-icon {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2)) !important;
}
