/* Custom styles for Managed Services Theme */

/* Grid utility classes for content sections */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    flex: 1 1 300px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

/* Footer widget styling */
.footer-widget {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-widget-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}