.fc-grid-1663796c {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fc-card-1663796c {
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fc-card-1663796c:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fc-icon-1663796c {
    font-size: 32px;
    color: #0073aa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon-1663796c svg {
    width: 32px;
    height: 32px;
    fill: #0073aa;
}

.fc-text-1663796c {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

/* Tablet Layout: 2 Columns */
@media (max-width: 1024px) {
    .fc-grid-1663796c {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Layout: 1 Column */
@media (max-width: 767px) {
    .fc-grid-1663796c {
        grid-template-columns: 1fr;
    }
}