  :root {
      --gold: #ffd700;
      --black: #000000;
      --dark: #111111;
      --light: #ffffff;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--black);
      color: var(--light);
      line-height: 1.6;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    header {
      background: radial-gradient(circle at top left, var(--gold), #333);
      padding: 80px 20px 60px;
      text-align: center;
    }
    header h1 {
      font-size: 30px;
      margin: 0 0 10px;
      color: var(--gold);
    }
    header h2 {
      font-size: 18px;
      margin: 0 0 20px;
      color: var(--light);
    }
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 13px;
    }
    .badge {
      border-radius: 999px;
      border: 1px solid #ffffff33;
      padding: 6px 12px;
      background: #00000066;
    }
    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-ghost {
      border-radius: 999px;
      border: 1px solid var(--gold);
      padding: 11px 18px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 16px 80px;
    }
    .section {
      margin-bottom: 50px;
    }
    .section-title {
      font-size: 24px;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
    }
    .section-subtitle {
      font-size: 14px;
      text-align: center;
      color: #cccccc;
      margin-bottom: 30px;
    }
    .two-column {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .two-column .col {
      flex: 1 1 260px;
    }
    .image-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ffffff22;
      background: #000000;
    }
    .image-card img {
      width: 100%;
      display: block;
      height: auto;
    }
    .image-caption {
      padding: 12px 14px;
      font-size: 13px;
      color: #cccccc;
    }
    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }
    .pill {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid #ffffff33;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 18px;
    }
    .service-card {
      background: var(--dark);
      border-radius: 14px;
      padding: 16px 16px 18px;
      border: 1px solid #ffffff22;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px #000000aa;
      border-color: var(--gold);
      background: #1b1b1b;
    }
    .service-card h3 {
      margin: 0 0 8px;
      font-size: 16px;
      color: var(--gold);
    }
    .service-card p {
      margin: 0;
      font-size: 13px;
      color: #dddddd;
    }
    .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .why-list li {
      padding: 8px 0;
      border-bottom: 1px solid #ffffff22;
      font-size: 14px;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .why-list li span.icon {
      color: var(--gold);
      margin-top: 2px;
    }
    .cta-band {
      margin-top: 20px;
      padding: 20px 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffd700, #9b7b00);
      color: #000;
      text-align: center;
    }
    .cta-band h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }
    .cta-band p {
      margin: 0 0 16px;
      font-size: 14px;
    }
    .cta-band .cta-buttons {
      justify-content: center;
    }
    .map-wrapper {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #ffffff22;
      background: #000;
    }
    iframe {
      width: 100%;
      border: 0;
      height: 260px;
      display: block;
    }
    .address {
      text-align: center;
      font-size: 14px;
      margin: 10px 0 0;
      color: #dddddd;
    }
    footer {
      background: #000;
      border-top: 1px solid #ffffff22;
      padding: 16px;
      text-align: center;
      font-size: 12px;
      color: #aaaaaa;
    }
    /* Mobile sticky bar */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #000000ee;
      border-top: 1px solid #ffffff33;
      display: flex;
      justify-content: space-around;
      padding: 8px 10px;
      z-index: 999;
    }
    .sticky-btn {
      flex: 1;
      margin: 0 4px;
      background: var(--gold);
      color: #000;
      border-radius: 999px;
      padding: 8px 6px;
      font-size: 13px;
      text-align: center;
      font-weight: 600;
    }
    @media (min-width: 768px) {
      header h1 {
        font-size: 36px;
      }
      header h2 {
        font-size: 20px;
      }
      iframe {
        height: 320px;
      }
      .sticky-bar {
        display: none;
      }
    }