    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
      color: #333;
    }

    /* Header Styles */
    header {
      background-color: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    /* Header Content */
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-left: 30px;
    }

    .logo img {
      width: 3rem;
      height: 3rem;
      border-radius: 0.5rem;
      object-fit: cover;
    }

    .logo h1 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #233367;
    }

    h1 {
      margin-left: 20px;
    }

    nav {
      display: flex;
      gap: 2rem;
      margin-right: 25px;
    }

    nav a {
      color: #233367;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #3b82f6;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 0.5rem;
      background-color: #f3f4f6;
      transition: background-color 0.3s ease;
    }

    .menu-toggle:hover {
      background-color: #e5e7eb;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .mobile-menu.active {
      display: block;
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-menu a {
      display: block;
      padding: 1rem 1.5rem;
      color: #4b5563;
      text-decoration: none;
      border-bottom: 1px solid #f3f4f6;
      transition: background-color 0.3s ease;
    }

    .mobile-menu a:hover {
      background-color: #f9fafb;
    }

    /*GALERIA*/

    .gallery a {
      text-decoration: none;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .gallery .gallery-item h3 {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(37, 22, 102);
      padding: 10px;
      color: white;
      font-size: 16px;
      text-align: center;
      margin: 0;
      /* Reset default margin for better control */
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
      background-color: #ffffff;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 90%;
      display: block;
    }

    .gallery-item a {
      text-decoration: none;
      color: inherit;
    }



    /* Contacto */
    .contacto {
      background-color: white;
    }
    .container h2{
      text-align: center;
      align-items: center;
  
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .info-box {
      background:#233367 ;
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .info-box h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #eef0f3;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .info-box h3 svg {
      width: 1.5rem;
      height: 1.5rem;
      color: #e5e7eb;
    }

    .info-box p {
      margin-bottom: 0.75rem;
      color: #ffffff;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .info-box p strong {
      min-width: 100px;
    }

    .info-box p svg {
      width: 1.25rem;
      height: 1.25rem;
      color: white;
      margin-top: 0.25rem;
    }


    /*footer*/

    footer {
      background-color: #233367;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      text-decoration: none;
    }

    footer p {
      margin: 0;
      font-size: 14px;
    }

    footer a {
      color: white;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      
      .info-box h3 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      gap: 0.75rem;
    }
    }