
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: "Palatino Linotype", Georgia, serif; color: #2b2b2b; background: #ffffff; line-height: 1.7; }
  .container { max-width: 1060px; margin: 0 auto; padding: 20px; }
  img { max-width: 100%; height: auto; display: block; }
  .hero { text-align: center; padding: 48px 20px 44px; background: linear-gradient(160deg, #16233c 0%, #1c2d4a 55%, #24395c 100%); color: #f5ead6; border-radius: 0 0 22px 22px; margin-bottom: 48px; }
  .hero .eyebrow { letter-spacing: 4px; text-transform: uppercase; font-size: 13px; color: #d4af6a; margin-bottom: 12px; }
  .hero h1 { font-size: 40px; line-height: 1.2; font-weight: 700; margin-bottom: 14px; }
  .hero h1 span { color: #d4af6a; }
  .hero p { max-width: 720px; margin: 0 auto 26px; font-size: 16.5px; color: #dcd2bd; }
  .hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-tags span { border: 1px solid #d4af6a; color: #f0e2c8; border-radius: 999px; padding: 6px 16px; font-size: 13px; }
  .section { margin-bottom: 52px; }
  .section-title { font-size: 25px; font-weight: 700; text-align: center; margin-bottom: 10px; color: #1c2d4a; }
  .section-title:after { content: ""; display: block; width: 64px; height: 3px; background: linear-gradient(90deg, #c9a227, #1c2d4a); margin: 12px auto 0; }
  .section-sub { text-align: center; color: #8a7a55; font-size: 15px; max-width: 720px; margin: 6px auto 26px; }
  .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .card { background: #faf7ef; border: 1px solid #eadfcb; border-radius: 12px; padding: 14px; text-align: center; transition: transform .2s, box-shadow .2s; }
  .card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(28,45,74,.12); }
  .card img { border-radius: 8px; margin-bottom: 10px; width: 100%; aspect-ratio: 1/1; object-fit: cover; cursor: zoom-in; }
  .card h4 { font-size: 14.5px; color: #1c2d4a; margin-bottom: 4px; }
  .card p { font-size: 12.5px; color: #7a7062; }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step { background: #fff; border: 1px solid #eadfcb; border-radius: 12px; padding: 24px 20px; text-align: center; }
  .step .step-num { width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 50%; background: linear-gradient(135deg, #c9a227, #1c2d4a); color: #fff; font-size: 19px; font-weight: 700; line-height: 42px; }
  .step h4 { font-size: 16px; color: #1c2d4a; margin-bottom: 8px; }
  .step p { font-size: 13.5px; color: #6d6255; }
  .faq { max-width: 820px; margin: 0 auto; }
  .faq details { background: #fff; border: 1px solid #eadfcb; border-radius: 12px; margin-bottom: 12px; padding: 6px 20px; }
  .faq summary { cursor: pointer; font-size: 15px; font-weight: 700; color: #1c2d4a; padding: 12px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary:after { content: "+"; font-size: 20px; color: #c9a227; }
  .faq details[open] summary:after { content: "–"; }
  .faq .faq-body { font-size: 14px; color: #6d6255; padding: 0 0 16px; }
  .footer-note { text-align: center; font-size: 13px; color: #a89880; border-top: 1px solid #eadfcb; padding-top: 22px; margin-top: 10px; }

  /* Lightbox zoom */
  .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,14,24,.93); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .lightbox.active { opacity: 1; pointer-events: auto; }
  .lightbox img { max-width: 92vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); transform: scale(.94); transition: transform .25s ease; }
  .lightbox.active img { transform: scale(1); }
  .lightbox .lb-close { position: absolute; top: 14px; right: 26px; color: #fff; font-size: 38px; line-height: 1; cursor: pointer; user-select: none; }
  @media (max-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } .steps { grid-template-columns: 1fr; } }
  @media (max-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } .hero h1 { font-size: 30px; } }
