/* Icon Button Styles */
.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 100px;
    padding: 1rem 0.75rem;
    margin: 0.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

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

.icon-button i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.icon-button span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Card enhancements */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}