 body {
      font-family: 'Inter', Arial, sans-serif;
      background: #f8fafc;
      color: #222;
      margin: 0;
    }
    .contact-hero {
      min-height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00000;
      position: relative;
      box-shadow: 0 8px 32px rgba(37,99,235,0.10);
      margin-bottom: 32px;
    }
    .contact-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #fff;
      z-index: 1;
    }
    .contact-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 40px 24px 32px 24px;
      max-width: 700px;
    }
    .contact-hero-content h1 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      margin-top:150px;
      letter-spacing: 1px;
      font-family: 'Inter', Arial, sans-serif;
    }
    .contact-hero-content p {
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.96;
      text-shadow: 0 1px 8px #0004;
    }
    .contact-flex {
      display: flex;
      gap: 48px;
      max-width: 1100px;
      margin: 0 auto 48px auto;
      padding: 0 24px;
      align-items: stretch;
      flex-wrap: wrap;
    }
    .contact-info {
      flex: 1 1 320px;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 4px 24px #0001;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 260px;
      max-width: 420px;
    }
    .contact-info h2 {
      font-size: 1.4rem;
      color: #970404;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }
    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      font-size: 1.08rem;
      color: #444;
    }
    .contact-list li i {
      color: #970404;
      font-size: 1.2rem;
      margin-top: 2px;
      min-width: 22px;
    }
    .contact-list li strong {
      color: #970404;
      font-weight: 600;
      margin-right: 6px;
      min-width: 80px;
      display: inline-block;
    }
    .contact-map {
      flex: 2 1 420px;
      min-width: 320px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 4px 24px #0001;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 340px;
      border: none;
      display: block;
    }
    @media (max-width: 1000px) {
      .contact-flex {
        flex-direction: column;
        gap: 24px;
        padding: 0 8px;
      }
      .contact-map, .contact-info {
        max-width: 100%;
      }
      .contact-map iframe {
        min-height: 260px;
      }