.team-section {
    background-color: var(--color-blue-300);
}

.team-image-skeleton {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 15px;
}

.our-team-section {
    display: block;
}

.team-subtitle {
    font-size: 2.5rem;
    color: var(--color-blue-700);
    font-weight: 600;
}

.text-white {
    color: white;
}

@media (max-width: 768px) {
    .our-team-section {
        display: none;
    }
}