body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.services-container {
    max-width: 1920px;
    width: 100%; /* Ocupa todo el ancho de la pantalla */
    text-align: center;
    padding: 20px 0;
}

.swiper {
    width: 100%; /* Hace que Swiper ocupe el 100% del contenedor */
    height: auto; /* Ajusta la altura automáticamente */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service img {
    width: 100%; /* Para que se adapten al tamaño del slide */
    max-width: 250px; /* Tamaño máximo de las imágenes */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
