    :root {
      --navy: #12263a;
      --blue: #1f6feb;
      --light-blue: #eaf3ff;
      --text: #243447;
      --muted: #627286;
      --white: #ffffff;
      --light: #f6f8fb;
      --border: #dbe3ec;
      --success: #197a4a;
      --shadow: 0 14px 35px rgba(18, 38, 58, 0.10);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: var(--white);
    }

    a {
      color: inherit;
    }

    .container {
      width: min(1100px, 92%);
      margin: 0 auto;
    }

    header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      text-decoration: none;
    }

    .brand span {
      color: var(--blue);
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 22px;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
    }

    nav a:hover {
      color: var(--blue);
    }

    .hero {
      background: linear-gradient(135deg, var(--navy), #1a4165);
      color: var(--white);
      padding: 92px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.20);
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 0.86rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(2.3rem, 5vw, 4.5rem);
      line-height: 1.05;
      margin-bottom: 22px;
      max-width: 760px;
    }

    .hero p {
      font-size: 1.12rem;
      color: #dbe9f7;
      max-width: 680px;
      margin-bottom: 30px;
    }

    .button-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 13px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 800;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--navy);
    }

    .hero-card {
      background: var(--white);
      color: var(--text);
      border-radius: 18px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .hero-card h2 {
      color: var(--navy);
      margin-bottom: 14px;
      font-size: 1.35rem;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .hero-card li::before {
      content: "✓";
      color: var(--success);
      font-weight: 900;
      margin-right: 10px;
    }

    section {
      padding: 82px 0;
    }

    .section-light {
      background: var(--light);
    }

    .section-heading {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      margin-bottom: 10px;
    }

    .section-heading p {
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: start;
    }

    .about-card,
    .contact-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 22px rgba(18, 38, 58, 0.06);
    }

    .about-card h3,
    .contact-card h3 {
      color: var(--navy);
      margin-bottom: 12px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(18, 38, 58, 0.05);
    }

    .service-icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: var(--light-blue);
      display: grid;
      place-items: center;
      font-size: 1.35rem;
      margin-bottom: 16px;
    }

    .service-card h3 {
      color: var(--navy);
      font-size: 1.14rem;
      margin-bottom: 8px;
    }

    .service-card p {
      color: var(--muted);
      min-height: 78px;
    }

    .price {
      display: inline-block;
      margin-top: 18px;
      font-size: 1.05rem;
      font-weight: 900;
      color: var(--blue);
    }

    .pricing-note {
      margin-top: 28px;
      text-align: center;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 26px;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 13px;
      margin-top: 18px;
    }

    .contact-list strong {
      color: var(--navy);
    }

    .ticket-box {
      align-content:center;
      background: var(--navy);
      color: var(--white);
      border-radius: 16px;
      padding: 34px;
      text-align:center;
    }

    .ticket-box h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .ticket-box p {
      color: #dbe9f7;
      margin-bottom: 22px;
    }

    footer {
      background: #0c1a28;
      color: #c8d5e2;
      text-align: center;
      padding: 26px 0;
      font-size: 0.92rem;
    }

    @media (max-width: 850px) {
      .hero-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      nav ul {
        display: none;
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding: 68px 0;
      }

      section {
        padding: 64px 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .service-card p {
        min-height: auto;
      }
    }
