.ag-icon-grid {
    display: grid;
    gap: 20px;
}
.ag-grid-item {
    text-align: center;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}
.ag-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.ag-icon-wrapper {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ag-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}
.ag-desc {
    margin: 0;
    font-size: 14px;
    color: #666;
}