body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f8ff;
    color: #333;
  }
  
  header {
    background: linear-gradient(to right, #0d47a1, #1976d2, #64b5f6);
    color: white;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  header img {
    height: 100px;
  }
  
  .header-text {
    text-align: center;
    flex: 1;
  }
  
  .header-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin: 0;
  }
  
  nav {
    background: linear-gradient(to right, #002f6c, #0d47a1, #1565c0);
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
  }
  
  nav a:hover {
    background-color: rgba(255,255,255,0.15);
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to bottom, #0d47a1, #1565c0);
    min-width: 200px;
    z-index: 1;
  }
  
  .dropdown-content a {
    display: block;
    padding: 12px 20px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .hero {
    background-image: url('/imagen/asun.jpg');
    background-size: cover;
    background-position: 55% 45%;
    height: 300px;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(13, 71, 161, 0.35),
      rgba(0, 0, 0, 0.45)
    );
  }
  
  .hero-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  }
  
  .container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  h2 {
    font-family: 'Playfair Display', serif;
    color: #0d47a1;
    margin-bottom: 20px;
  }
  
  .historia {
    line-height: 1.7;
  }
  
  .galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .galeria img {
    width: calc(33% - 20px);
    border-radius: 8px;
    object-fit: cover;
  }
  
  footer {
    background: linear-gradient(to right, #002f6c, #0d47a1, #1976d2);
    color: white;
    text-align: center;
    padding: 30px 10px;
  }
  
  footer img {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .galeria img {
      width: 100%;
    }
  }