<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Gallery section styling */
.gallery-section {
    text-align: center;
    padding: 50px 0;
}

.gallery-section h2 {
    color: #234555;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Swiper slider for mobile */
.swiper-container {
    width: 100%;
    padding-bottom: 30px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Gallery grid layout for larger screens */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 20px;
    justify-items: center;
}

/* Asegurar que las imÃ¡genes conserven su tamaÃ±o adecuado */
.gallery img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ajustar segÃºn sea necesario */
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.lightbox:target {
    display: flex;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    text-decoration: none;
}

/* Los botones de paginaciÃ³n no deben afectar el tamaÃ±o de las imÃ¡genes */
.pagination-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-buttons button {
    padding: 10px 20px;
    background-color: #407088;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.pagination-buttons button:hover {
    background-color: #234555;
}

.gallery-page {
    display: none; /* Asegura que sÃ³lo una pÃ¡gina se muestre a la vez */
}

.gallery-page.active {
    display: flex; /* Asegura que se muestre la pÃ¡gina activa */
    justify-content: center;
    gap: 15px;
}</pre></body></html>