
    /* -----------------------------------------------------------
       GLOBAL RESET & COLOR PALETTE
       Strict Background Requirement: #f1f4ff
       No Links, No Buttons, Pure Visual Showcase for Young Audiences
    ----------------------------------------------------------- */
    :root {
      --bg-color: #f1f4ff;
      --card-bg: #ffffff;
      --card-inner-bg: #f8faff;
      --text-main: #1f2738;
      --text-muted: #626e8a;
      --text-light: #8e9bb5;
      --accent-pink: #ff7597;
      --accent-purple: #8c7ae6;
      --accent-blue: #4a72ff;
      --accent-mint: #2ecc71;
      --accent-yellow: #f5cd79;
      --card-border: #e6ebfa;
      --shadow-soft: 0 10px 30px rgba(50, 75, 140, 0.06);
      --shadow-hover: 0 16px 40px rgba(50, 75, 140, 0.10);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 10px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      padding: 40px 20px 80px;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
    }

    /* -----------------------------------------------------------
       HEADER / HERO TITLE (PURE DISPLAY, NO LOGOS, NO COMPANY NAMES)
    ----------------------------------------------------------- */
    .header-banner {
      text-align: center;
      margin-bottom: 50px;
      padding: 40px 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-soft);
    }

    .pill-badge {
      display: inline-block;
      padding: 6px 16px;
      background: #e9edff;
      color: var(--accent-blue);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .main-title {
      font-size: 38px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 14px;
      line-height: 1.25;
    }

    .sub-title {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 760px;
      margin: 0 auto 24px;
      font-weight: 400;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .hero-tag-item {
      padding: 6px 14px;
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-sm);
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* -----------------------------------------------------------
       SECTION HEADINGS
    ----------------------------------------------------------- */
    .section-header {
      margin: 60px 0 28px;
      text-align: left;
    }

    .section-eyebrow {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--accent-pink);
      margin-bottom: 6px;
      display: block;
    }

    .section-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.3px;
    }

    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    /* -----------------------------------------------------------
       RESPONSIVE GALLERY GRID (DESKTOP & MOBILE FRIENDLY)
    ----------------------------------------------------------- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .gallery-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .img-wrapper {
      position: relative;
      width: 100%;
      background: #f1f4ff;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-card:hover .img-wrapper img {
      transform: scale(1.02);
    }

    .card-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      color: var(--text-main);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 999px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(230, 235, 250, 0.8);
      z-index: 2;
    }

    .card-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .card-title {
      font-size: 19px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .card-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .tag-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-bubble {
      padding: 4px 10px;
      background: var(--card-inner-bg);
      border: 1px solid var(--card-border);
      border-radius: 6px;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* -----------------------------------------------------------
       HIGHLIGHT / PANORAMIC CARD (FULL-WIDTH ADAPTIVE)
    ----------------------------------------------------------- */
    .card-panoramic {
      grid-column: span 2;
    }

    .card-panoramic .img-wrapper {
      aspect-ratio: 16 / 9;
    }

    /* -----------------------------------------------------------
       SPECIFICATIONS MATRIX (STATIC DISPLAY, NO BUTTONS)
    ----------------------------------------------------------- */
    .spec-matrix-card {
      margin-top: 60px;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-soft);
      padding: 36px;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .spec-item {
      background: var(--card-inner-bg);
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--card-border);
    }

    .spec-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 6px;
    }

    .spec-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
    }

    .spec-sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* -----------------------------------------------------------
       FAQ SECTION (PURE DISPLAY CARDS, NO BUTTONS, NO LINKS)
    ----------------------------------------------------------- */
    .faq-wrapper {
      margin-top: 60px;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-soft);
      padding: 40px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .faq-card {
      background: var(--card-inner-bg);
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--card-border);
    }

    .faq-q {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .faq-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-pink);
      flex-shrink: 0;
    }

    .faq-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* -----------------------------------------------------------
       FOOTER (PURE DISPLAY, NO LINKS, NO COMPANY NAMES)
    ----------------------------------------------------------- */
    .showcase-footer {
      margin-top: 60px;
      text-align: center;
      padding: 30px 20px;
      color: var(--text-light);
      font-size: 13px;
      border-top: 1px solid rgba(230, 235, 250, 0.8);
    }

    /* -----------------------------------------------------------
       RESPONSIVE ADAPTATIONS (MOBILE & TABLET COMPATIBILITY)
    ----------------------------------------------------------- */
    @media (max-width: 900px) {
      .spec-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .main-title {
        font-size: 30px;
      }
    }

    @media (max-width: 640px) {
      body {
        padding: 24px 14px 60px;
      }
      .header-banner {
        padding: 28px 18px;
        margin-bottom: 36px;
      }
      .main-title {
        font-size: 24px;
      }
      .sub-title {
        font-size: 15px;
      }
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .card-panoramic {
        grid-column: span 1;
      }
      .card-panoramic .img-wrapper {
        aspect-ratio: 1 / 1;
      }
      .spec-grid {
        grid-template-columns: 1fr;
      }
      .spec-matrix-card, .faq-wrapper {
        padding: 24px 18px;
      }
    }
  