      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      body {
          background-color: #594B46;
      }

      .container {
          max-width: 100%;
          margin: 0 auto;
          padding: 15px;
          /* Espacio alrededor del contenedor */
      }

      /* Carousel Styles */
      .carousel {
          position: relative;
          width: calc(100%);
          /* Ancho total */
          height: 300px;
          /* Ajustar la altura para que sea más plano */
          overflow: hidden;
          margin: 0 auto;
          /* Centrar y margen inferior */
          border-radius: 6px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          background: #C0B4AE;
      }

      .carousel-slides {
          display: flex;
          width: 100%;
          height: 100%;
          transition: transform 0.5s ease-in-out;
      }

      .carousel-slide {
          flex: 0 0 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding: 20px;
          /* Ajustar el padding para que ocupe más espacio */
          text-align: center;
          color: #26211f;
      }

      .carousel-slide h2 {
          font-size: 20pt;
          /* Ajustar el tamaño del texto */
          margin-bottom: 20px;
          /* Ajustar el margen */
          font-family: 'Roboto Slab';
      }

      .carousel-slide p {
          font-size: 16pt;
          /* Ajustar el tamaño del texto */
          max-width: 1200px;
          line-height: 1.6;
          font-family: 'Lora';
      }

      .carousel-btn {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background-color: rgba(255, 255, 255, 0.3);
          color: white;
          border: none;
          padding: 15px;
          cursor: pointer;
          border-radius: 50%;
          font-size: 1.5rem;
          transition: all 0.3s ease;
          z-index: 10;
      }

      .carousel-btn:hover {
          background-color: rgba(255, 255, 255, 0.5);
      }

      .carousel-btn.prev {
          left: 20px;
      }

      .carousel-btn.next {
          right: 20px;
      }

      /* Image Gallery Styles */
      .gallery-section {
          padding: 20px 0;
      }

      .gallery-section h2 {
          text-align: center;
          margin-bottom: 30px;
          font-size: 2rem;
          color: #333;
      }

      .gallery-container {
          display: flex;
          gap: 15px;
          max-height: 60vh;
          overflow: hidden;
          width: calc(100%);
          /* Ancho total */
          margin: 0 auto;
          /* Centrar la galería */
      }

      .gallery-column {
          flex: 1;
          display: flex;
          flex-direction: column;
          gap: 15px;
      }

      .gallery-item {
          flex: 1;
          aspect-ratio: 1/1;
          background-color: white;
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          position: relative;
          cursor: pointer;
      }

      .gallery-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      }

      .placeholder-text {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100%;
          color: #666;
          font-weight: 500;
      }

      .placeholder-text img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      /* Modal Styles */
      .modal {
          display: none;
          position: fixed;
          z-index: 1000;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          overflow: auto;
          background-color: rgba(0, 0, 0, 0.8);
          justify-content: center;
          align-items: center;
      }
      
      .modal h2 {
        color: #26211f;
      }

      .modal-content {
          background-color: #fefefe;
          margin: auto;
          padding: 20px;
          border: 1px solid #888;
          width: auto;
          max-width: 750px;
          text-align: center;
          border-radius: 12px;
          position: relative;
      }

      .close {
          color: white;
          position: fixed;
          top: 10px;
          right: 10px;
          font-size: 28px;
          font-weight: bold;
          text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          z-index: 1001;
          cursor: pointer;
          width: 30px;
          height: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .close:hover,
      .close:focus {
          color: black;
          text-decoration: none;
          cursor: pointer;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
          .gallery-container {
              flex-direction: column;
          }

          .carousel-slide h2 {
              font-size: 2rem;
          }

          .carousel-slide p {
              font-size: 1rem;
          }
      }

      @media (max-width: 480px) {
          .carousel {
              height: 200px;
              /* Mantener la altura más plana */
          }

          .carousel-slide {
              padding: 20px;
          }

          .carousel-slide h2 {
              font-size: 1.5rem;
          }

          .carousel-btn {
              padding: 10px;
              font-size: 1.2rem;
          }
      }