body { font-family: 'Inter', sans-serif; background: #fafcff; color: #1a2c3e; margin: 0; padding: 0; }
    .header { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.05); padding: 1rem 5%; display: flex; align-items: center; justify-content: space-between; }
    .logo-img { height: 48px; }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a { text-decoration: none; color: #1a2c3e; font-weight: 600; }
    .nav-links a.active, .nav-links a:hover { color: #1e4a76; }
    .banner-contacto {
      width: 100%;
      height: 220px;
      background: linear-gradient(120deg, #0b2b5c 60%, #00a3b2 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      box-shadow: 0 8px 32px rgba(0,70,100,0.10);
    }
    .banner-overlay {
      width: 100%;
      text-align: center;
      color: #fff;
      z-index: 2;
    }
    .banner-overlay h1 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      letter-spacing: -1px;
    }
    .banner-overlay p {
      font-size: 1.1rem;
      font-weight: 400;
      opacity: 0.95;
    }
    .container { max-width: 600px; margin: 2rem auto; padding: 2rem; background: #fff; border-radius: 18px; box-shadow: 0 8px 24px rgba(0,70,100,0.08); }
    .section-title { font-size: 2rem; font-weight: 800; color: #0b2b5c; text-align: center; margin-bottom: 0.5rem; }
    .subtitle { text-align: center; color: #2c3e50; margin-bottom: 2rem; }
    .form-contacto { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .form-row input, .form-row select { flex: 1 1 180px; padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid #e2e8f0; font-size: 1rem; background: #f8fafc; margin-bottom: 0; }
    .form-contacto textarea { border-radius: 8px; border: 1px solid #e2e8f0; font-size: 1rem; padding: 0.7rem 1rem; background: #f8fafc; resize: vertical; }
    .form-contacto button { background: var(--primary, #1e4a76); color: #fff; border: none; border-radius: 8px; padding: 0.9rem 2.2rem; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
    .form-contacto button:hover { background: var(--primary-dark, #0b2b5c); }
    #formMsg { margin-top:1rem; color:var(--primary,#1e4a76); }
    /* Footer igual que index.html */
    .footer {
      background: #0e1f32;
      color: #cddfe7;
      padding: 3rem 5% 2rem;
      margin-top: 4rem;
      border-top-left-radius: 32px;
      border-top-right-radius: 32px;
    }
    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-col {
      flex: 1;
      min-width: 180px;
    }
    .footer-logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1rem;
    }
    .footer-logo-img {
      height: 46px;
      width: auto;
      display: block;
    }
    .footer-quote {
      font-style: italic;
      font-size: 0.9rem;
      margin-top: 0.8rem;
      opacity: 0.8;
      max-width: 220px;
    }
    .footer-col h4 {
      color: white;
      margin-bottom: 1rem;
      font-weight: 700;
      font-size: 1.2rem;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col li, .footer-col a {
      color: #bdd4e2;
      text-decoration: none;
      line-height: 1.8;
      transition: 0.2s;
    }
    .footer-col a:hover {
      color: white;
      text-decoration: underline;
    }
    .copyright {
      border-top: 1px solid #2c445c;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.8rem;
      color: #98b1c4;
    }
    .footer-bottom-copy {
      color: #98b1c4;
      text-align: left;
    }
    .footer-megaweb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(205, 223, 231, 0.75);
      font-size: 0.85rem;
      transition: color 0.2s, opacity 0.2s;
      margin-left: auto;
    }
    .footer-megaweb:hover {
      color: #00a3b2;
      opacity: 1;
    }
    .footer-megaweb-logo {
      height: 32px;
      width: auto;
      max-width: 110px;
      object-fit: contain;
      display: block;
    }
    @media (max-width: 800px) {
      .footer-grid {
        flex-direction: column;
        gap: 1.8rem;
        align-items: center;
      }
      .footer-logo-area { justify-content: center; }
      .footer-quote { text-align: center; margin-left: auto; margin-right: auto; }
      .footer-col { text-align: center; min-width: 0; }
    }
    @media (max-width: 640px) {
      .footer-grid {
        flex-direction: column;
        gap: 1.8rem;
        align-items: center;
      }
      .footer-logo-area { justify-content: center; }
      .footer-quote { text-align: center; margin-left: auto; margin-right: auto; }
      .footer-col { text-align: center; min-width: 0; }
      .copyright {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }
      .footer-bottom-copy { text-align: center; }
      .footer-megaweb { margin-left: 0; }
    }