

    :root {
      /* Primary Brand */
      --rp-navy: #003964;
      --rp-teal: #00a89c;
      --rp-teal-hover: #008f85;

      /* Secondary Accents */
      --rp-orange: #CD6414;
      --rp-green: #5A8C4D;
      --rp-blue-light: #368BA9;

      /* Neutrals */
      --rp-white: #ffffff;
      --rp-off-white: #f8f9fa;
      --rp-gray-100: #e9ecef;
      --rp-gray-200: #e5e8eb;
      --rp-gray-500: #6b7280;
      --rp-gray-600: #4a5568;
      --rp-gray-800: #333333;

      /* Utility */
      --rp-gold: #FFB800;

      /* Links */
      --rp-link: #054ada;

      /* Typography */
      --font-display: inherit;
      --font-body: inherit;

      /* Layout */
      --max-width: 1140px;
      --content-width: 760px;
    }
    html, body {
      overflow-x: hidden;                                                                                                                                                                                                                          
    }                                                         
    html, body {
      touch-action: pan-y;
    }
    /* Scope resets to landing page content only */
    .lp-content * { margin: 0; padding: 0; box-sizing: border-box; }

    .lp-content {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      color: var(--rp-gray-800);
      background: var(--rp-white);
      -webkit-font-smoothing: antialiased;
    }

    /* ---- HERO ---- */
    .lp-content .hero {
      background:
        linear-gradient(rgba(0, 57, 100, 0.7), rgba(0, 57, 100, 0.8)),
        url('https://rp-cms.imgix.net/wp-content/uploads/teen-summer-trips-rustic-pathways-thailand.jpg?fit=crop&w=1800&h=1000') center/cover no-repeat;
      color: var(--rp-white);
      padding: 120px 24px 100px;
      text-align: center;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lp-content .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4.5vw, 48px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
      color: #ffffff;
    }

    .lp-content .hero .subtitle {
      font-size: 18px;
      opacity: 0.9;
      max-width: 620px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }

    .lp-content .hero-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .lp-content .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .lp-content .btn-primary {
      background: var(--rp-teal);
      color: var(--rp-white);
      position: relative;
      overflow: hidden;
    }

    .lp-content .btn-primary:hover {
      background: var(--rp-teal-hover);
      text-decoration: none;
    }

    /* Shimmer effect for hero CTA */
    .lp-content .hero .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 2.5s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      50%, 100% { left: 100%; }
    }

    .lp-content .btn-outline {
      background: transparent;
      color: var(--rp-white);
      border: 2px solid rgba(255,255,255,0.6);
    }

    .lp-content .btn-outline:hover {
      border-color: var(--rp-white);
      background: rgba(255,255,255,0.1);
      text-decoration: none;
    }

    /* ---- TRUST BAR ---- */
    .lp-content .trust-bar {
      background: var(--rp-off-white);
      padding: 20px 24px;
      border-bottom: 1px solid var(--rp-gray-200);
    }

    .lp-content .trust-bar .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--rp-gray-600);
      font-weight: 500;
    }

    .lp-content .trust-bar .stat {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lp-content .trust-bar strong {
      color: var(--rp-navy);
      font-size: 15px;
    }

    /* ---- LAYOUT ---- */
    .lp-content .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .lp-content .content-narrow {
      max-width: var(--content-width);
      margin: 0 auto;
    }

    .lp-content section {
      padding: 56px 0;
    }

    .lp-content section + section {
      border-top: 1px solid var(--rp-gray-200);
    }

    /* ---- TYPOGRAPHY ---- */
    .lp-content h2 {
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 34px);
      color: var(--rp-navy);
      margin-bottom: 20px;
      margin-top: 0;
      line-height: 1.3;
      letter-spacing: -0.3px;
    }

    .lp-content h3 {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--rp-navy);
      margin-bottom: 12px;
      margin-top: 32px;
      line-height: 1.35;
    }

    .lp-content p { margin-bottom: 16px; }

    .lp-content a { color: var(--rp-link); text-decoration: none; }
    .lp-content a:hover { text-decoration: underline; }

    /* ---- DEFINITION BOX ---- */
    .lp-content .definition-box {
      background: var(--rp-off-white);
      padding: 24px 28px;
      margin-bottom: 32px;
      border-radius: 8px;
    }

    .lp-content .definition-box p:last-child { margin-bottom: 0; }

    /* ---- PROGRAM CARDS ---- */
    .lp-content .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
      margin: 32px 0;
    }

    .lp-content .program-card {
      background: var(--rp-white);
      border: 1px solid var(--rp-gray-200);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow 0.2s ease, transform 0.15s ease;
    }

    .lp-content .program-card:hover {
      box-shadow: 0 8px 24px rgba(0,57,100,0.12);
      transform: translateY(-2px);
    }

    .lp-content .program-card .card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      background: var(--rp-gray-100);
    }

    .lp-content .program-card .card-body {
      padding: 20px;
    }

    .lp-content .program-card .card-destination {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--rp-navy);
      margin-bottom: 6px;
    }

    .lp-content .program-card .card-type {
      font-size: 13px;
      font-weight: 600;
      color: var(--rp-teal);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .lp-content .program-card .card-meta {
      font-size: 14px;
      color: var(--rp-gray-600);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 12px;
    }

    .lp-content .program-card .card-price {
      font-size: 16px;
      font-weight: 700;
      color: var(--rp-navy);
    }

    .lp-content .program-card .card-price span {
      font-weight: 400;
      font-size: 13px;
      color: var(--rp-gray-600);
    }

    /* Make entire card clickable */
    .lp-content a.program-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .lp-content a.program-card:hover {
      text-decoration: none;
    }


    .lp-content .updated { font-size: 14px; color: var(--rp-gray-600); }
    .lp-content .country-links { columns: 2; padding-left: 20px; margin: 8px 0 24px; }
    .lp-content .data-table caption { text-align: left; font-weight: 600; margin-bottom: 8px; }

    /* ---- AGE CARDS ---- */
    .lp-content .age-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
      margin: 28px 0;
    }

    .lp-content .age-card {
      background: var(--rp-off-white);
      border-radius: 10px;
      padding: 24px;
    }

    .lp-content .age-card .age-label {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--rp-navy);
      margin-bottom: 4px;
    }

    .lp-content .age-card .age-stage {
      font-size: 13px;
      font-weight: 600;
      color: var(--rp-teal);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .lp-content .age-card p {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .lp-content .age-card .age-recs {
      font-size: 14px;
      font-weight: 600;
      color: var(--rp-navy);
    }

    /* ---- DATA TABLE ---- */
    .lp-content .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      font-size: 15px;
    }

    .lp-content .data-table th {
      background: var(--rp-navy);
      color: var(--rp-white);
      padding: 14px 16px;
      text-align: left;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .lp-content .data-table td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--rp-gray-200);
    }

    .lp-content .data-table tr:nth-child(even) td {
      background: var(--rp-off-white);
    }

    /* ---- TRUST SECTION ---- */
    .lp-content .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
      margin: 28px 0;
    }

    .lp-content .trust-item {
      text-align: center;
      padding: 28px 20px;
      background: var(--rp-off-white);
      border-radius: 10px;
    }

    .lp-content .trust-item .trust-number {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      color: var(--rp-teal);
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .lp-content .trust-item .trust-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--rp-navy);
      margin-bottom: 6px;
    }

    .lp-content .trust-item .trust-detail {
      font-size: 13px;
      color: var(--rp-gray-600);
      line-height: 1.5;
    }

    /* ---- TESTIMONIAL ---- */
    .lp-content .testimonial {
      background: var(--rp-navy);
      color: var(--rp-white);
      padding: 40px;
      border-radius: 12px;
      margin: 40px 0;
      position: relative;
    }

    .lp-content .testimonial::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 80px;
      color: rgba(255,255,255,0.15);
      position: absolute;
      top: 8px;
      left: 24px;
      line-height: 1;
    }

    .lp-content .testimonial blockquote {
      font-family: var(--font-display);
      font-size: 19px;
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .lp-content .testimonial .attribution {
      font-size: 14px;
      font-weight: 600;
      opacity: 0.85;
    }

    /* ---- INCLUDES LIST ---- */
    .lp-content .includes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin: 24px 0;
    }

    .lp-content .includes-col h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--rp-navy);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .lp-content .includes-col ul {
      list-style: none;
      padding: 0;
    }

    .lp-content .includes-col li {
      padding: 6px 0;
      font-size: 15px;
      color: var(--rp-gray-800);
      padding-left: 20px;
      position: relative;
    }

    .lp-content .includes-col li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--rp-teal);
      font-weight: 700;
    }

    /* ---- FAQ ---- */
    .lp-content .faq-section { margin: 0; }

    .lp-content .faq-item {
      border-bottom: 1px solid var(--rp-gray-200);
      padding: 24px 0;
    }

    .lp-content .faq-item h3 {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      color: var(--rp-navy);
      margin-top: 0;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .lp-content .faq-answer {
      font-size: 16px;
      line-height: 1.7;
    }

    .lp-content .faq-answer p:last-child { margin-bottom: 0; }

    /* ---- CTA SECTION ---- */
    .lp-content .cta-section {
      background: var(--rp-navy);
      color: var(--rp-white);
      text-align: center;
      padding: 64px 24px;
      border-top: none;
    }

    .lp-content .cta-section h2 {
      color: var(--rp-white);
      margin-bottom: 16px;
    }

    .lp-content .cta-section p {
      opacity: 0.9;
      max-width: 540px;
      margin: 0 auto 32px;
    }

    .lp-content .cta-section .hero-ctas {
      margin-bottom: 24px;
    }

    .lp-content .cta-footer {
      font-size: 13px;
      opacity: 0.6;
      margin-top: 24px;
    }

    /* ---- MID-PAGE CTA ---- */
    .lp-content .mid-cta {
      background: var(--rp-off-white);
      border-radius: 10px;
      padding: 32px;
      text-align: center;
      margin: 40px 0;
    }

    .lp-content .mid-cta p {
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 640px) {
      .lp-content .hero { padding: 56px 20px 44px; }
      .lp-content .hero .subtitle { font-size: 16px; }
      .lp-content section { padding: 40px 0; }
      .lp-content .trust-bar .inner { gap: 20px; font-size: 13px; }
      .lp-content .program-grid { grid-template-columns: 1fr; }
      .lp-content .testimonial { padding: 28px 24px; }
      .lp-content .testimonial blockquote { font-size: 17px; }
    }
  