body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.nav-bar {
    background-color: #555;
    overflow: hidden;
}
.nav-bar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.nav-bar a:hover {
    background-color: #ddd;
    color: black;
}
.main-content {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 0px; /* Ajusta este valor según sea necesario para dar espacio al footer */
}
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}
.social-media {
    text-align: center;
    padding: 20px;
}
.social-media a {
    margin: 0 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
    transition: background-color 0.3s;
}
.social-media a:hover {
    background-color: #555;
}
.contact-form {
    background-color: #fff;
    padding: 15px;
    margin: 15px 0;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
}
.contact-form button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #555;
}
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.image-gallery img {
    margin: 5px;
    width: calc(33% - 10px);
    height: auto;
}
.google-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    margin: 20px 0;
}
.section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.section h2 {
    color: #333;
}
blockquote {
    font-style: italic;
    border-left: 4px solid #333;
    padding-left: 15px;
    margin: 20px 0;
}

blockquote footer {
    font-style: normal;
    text-align: right;
    color: #555;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background-color: #555;
}
/* Estilos para el carrusel de imágenes */
.image-carousel {
    position: relative;
    max-width: 600px; /* Ajusta según sea necesario */
    margin: auto;
    overflow: hidden;
}

.carousel-slides .slide {
    display: none;
}

.carousel-slides img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.testimonial-carousel {
    width: 100%;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
}

.testimonial-slide blockquote {
    font-style: italic;
}

.testimonial-slide footer {
    font-weight: bold;
    margin-top: 10px;
}
/* Estilos adicionales para las nuevas secciones */
.section {
    margin-bottom: 20px;
}

.mission-statement, .our-history, .team-info, .values-and-commitment {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.photo-gallery {
    text-align: center;
}

.photo-gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.photo-gallery img {
    width: calc(50% - 10px);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .photo-gallery img {
        width: 100%;
    }
}
/* Estilos Generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header, .main-content, .footer {
    padding: 20px;
    text-align: center;
}

/* Barra de Navegación Responsiva */
.nav-bar {
    overflow: hidden;
    background-color: #333;
}

.nav-bar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.nav-bar a.icon {
    display: none;
}

/* Estilos para Secciones */
.section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

/* Galería de Fotos Responsiva */
.photo-gallery .gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .nav-bar a {
        float: none;
        width: 100%;
    }

    .nav-bar a.icon {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .nav-bar.responsive {position: relative;}
    .nav-bar.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .nav-bar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}