/* Common Section Styles - Google-inspired */
section {
    padding: 64px 0;
    overflow: hidden;
    background: #fff;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* Section Animations */
.section-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation for Grid Items */
.animate-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.animate-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.animate-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.animate-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.animate-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.animate-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.animate-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers - Google style */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: #202124;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: #127C71;
    border-radius: 2px;
}

.section-subtitle {
    color: #5f6368;
    font-size: 14px;
    max-width: 560px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Responsive Sections */
@media (max-width: 1024px) {
    section {
        padding: 48px 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 1.2rem;
    }
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
