  /* page banner */
    .page-banner {
      margin-top: 80px;
      background: linear-gradient(145deg, #0a192f 0%, #1e3a5f 100%);
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://picsum.photos/id/104/1600/600');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 0;
    }
    .page-banner .container {
      position: relative;
      z-index: 2;
    }
    .page-banner h1 {
      font-size: 56px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .page-banner p {
      font-size: 22px;
      color: #e0e4e8;
      max-width: 700px;
      margin: 0 auto;
    }
    .page-banner .gold-line {
      width: 100px;
      height: 4px;
      background: #d4af37;
      margin: 25px auto 0;
    }

    /* contact section: no forms, no map, center QR */
    .contact-section {
      padding: 80px 0;
    }
    .contact-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .contact-info {
      max-width: 400px;
    }
    .contact-info h2 {
      font-size: 32px;
      font-weight: 600;
      color: #0a192f;
      margin-bottom: 30px;
      border-left: 5px solid #d4af37;
      padding-left: 20px;
    }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }
    .info-icon {
      width: 50px;
      height: 50px;
      background: #0a192f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d4af37;
      font-size: 22px;
      flex-shrink: 0;
      border: 2px solid #d4af37;
    }
    .info-text h4 {
      font-size: 20px;
      font-weight: 600;
      color: #0a192f;
      margin-bottom: 6px;
    }
    .info-text p {
      color: #4d627a;
      font-size: 18px;
      line-height: 1.5;
    }
    .qr-block {
      text-align: center;
      background: #ffffff;
      padding: 40px 40px 35px;
      border-radius: 32px;
      box-shadow: 0 25px 50px -10px rgba(0,20,40,0.15);
      border: 1px solid #eef2f6;
      transition: transform 0.3s;
    }
    .qr-block:hover {
      transform: translateY(-8px);
    }
    .qr-image {
      width: 220px;
      height: 220px;
      margin: 0 auto 20px;
      border: 4px solid #d4af37;
      border-radius: 24px;
      overflow: hidden;
      background: #ffffff;
      padding: 8px;
    }
    .qr-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .qr-block p {
      font-size: 20px;
      font-weight: 500;
      color: #0a192f;
      margin-top: 10px;
    }
    .qr-block span {
      color: #d4af37;
      font-weight: 600;
    }
    /* fine print */
    .contact-note {
      text-align: center;
      margin-top: 60px;
      color: #6f8aaa;
      font-size: 16px;
      border-top: 1px dashed #d4af37;
      padding-top: 30px;
    }
    .contact-note i {
      color: #d4af37;
    }

    /* responsive */
    @media (max-width: 992px) {
      .contact-grid {
        gap: 50px;
      }
      .footer .container { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .page-banner h1 { font-size: 42px; }
      .qr-image { width: 180px; height: 180px; }
    }