        /* Estilos generales */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        /* Cabecera y Logo */
        header {
            background-color: #ffffff;
            text-align: center;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            max-width: 300px;
            height: auto;
        }

        /* Contenedor principal para las secciones */
        .contenedor {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 20px;
        }
        section {
            background: white;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        h2 {
            color: #0056b3;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        /* Lista de servicios */
        ul.servicios-lista {
            list-style-type: square;
            padding-left: 20px;
            font-size: 1.1em;
        }
        ul.servicios-lista li {
            margin-bottom: 10px;
        }

        /* Galería de imágenes (CSS Grid) */
        .galeria {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .galeria img {
            width: 100%;
            height: 200px; /* Altura fija para que se vean uniformes */
            object-fit: cover; /* Recorta suavemente para no deformar la foto */
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .galeria img:hover {
            transform: scale(1.05); /* Efecto de zoom al pasar el ratón */
        }

        /* Botones de contacto */
        .contacto-botones {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .boton {
            display: inline-block;
            padding: 12px 24px;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
        }
        .boton-whatsapp {
            background-color: #25D366;
        }
        .boton-whatsapp:hover {
            background-color: #1ebe56;
        }
        .boton-correo {
            background-color: #0056b3;
        }
        .boton-correo:hover {
            background-color: #004494;
        }
        
        /* Pie de página */
        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
            margin-top: 40px;
        }
