/* Google Workspace Products Grid Styles */
.google-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.google-products-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 96, 254, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.google-products-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.google-products-section .section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0060fe;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.google-products-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.google-products-section .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.google-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .product-card {
        width: 100%;
        max-width: 280px;
    }
}