/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container */
  .container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .container-narrow {
    max-width: 768px;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  /* Typography */
  .text-lg {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  
  .text-amber {
    color: #f59e0b;
  }
  
  .text-white {
    color: #fff;
  }
  
  .text-light {
    color: #cbd5e1;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
  }
  
  .btn-primary {
    background: #f59e0b;
    color: #fff;
  }
  
  .btn-primary:hover {
    background: #d97706;
  }
  
  .btn-white {
    background: #fff;
    color: #1e293b;
  }
  
  .btn-white:hover {
    background: #f1f5f9;
  }
  
  .btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.25);
  }
  
  .btn-full-mobile {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .btn-full-mobile {
      width: auto;
    }
  }
  
  .btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  
  .btn:hover .btn-arrow {
    transform: translateX(4px);
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .navbar-links {
      gap: 1.5rem;
    }
  }
  
  .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    display: none;
  }
  
  .nav-link:hover {
    color: #f59e0b;
  }
  
  @media (min-width: 640px) {
    .nav-link {
      display: block;
    }
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #1e293b;
  }
  
  .logo-domain {
    font-weight: 400;
    color: #94a3b8;
  }
  
  .logo-domain-dark {
    color: #64748b;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #fffbeb, #fff);
    text-align: center;
  }
  
  .hero-content {
    max-width: 896px;
    margin: 0 auto;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 2.75rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    margin-bottom: 2rem;
  }
  
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
    color: #475569;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
  }
  
  .check-icon-white {
    color: #fff;
  }

  /* Hero Trust Bar */
  .hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #6b7280;
  }
  .hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
  }
  .hero-trust-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }
  .hero-trust-icon--green { color: #22c55e; }
  .hero-trust-icon--amber { color: #f59e0b; }
  .hero-trust-sep {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1;
  }

  /* Hero Applications Open Badge */
  .hero-apps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.875rem;
  }
  .hero-apps-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  .section-gray {
    background: #f8fafc;
  }
  
  .section-dark {
    background: #0f172a;
    color: #fff;
  }
  
  .section-cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    text-align: center;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .section-title {
      font-size: 2.25rem;
    }
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 672px;
    margin: 0 auto;
  }
  
  /* Grid Layouts */
  .grid-2-col {
    display: grid;
    gap: 2.5rem;
  }
  
  @media (min-width: 1024px) {
    .grid-2-col {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Alert */
  .alert {
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-top: 1.5rem;
  }
  
  .alert-warning {
    background: #fffbeb;
    border-left: 4px solid #fbbf24;
  }
  
  .alert-warning p {
    color: #92400e;
    margin: 0;
  }
  
  /* Feature Cards */
  .features-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 0.75rem;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .feature-icon-amber {
    background: #fef3c7;
    color: #d97706;
  }
  
  .feature-icon-blue {
    background: #dbeafe;
    color: #2563eb;
  }
  
  .feature-icon-green {
    background: #d1fae5;
    color: #059669;
  }
  
  .feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
  }
  
  .feature-desc {
    color: #475569;
    margin: 0;
  }
  
  /* Requirements Grid */
  .requirements-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 896px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .requirements-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .requirement-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
  }
  
  .requirement-card-required {
    border-color: #a7f3d0;
  }
  
  .requirement-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .requirement-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .requirement-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
  }
  
  .requirement-icon-green {
    background: #10b981;
  }
  
  .requirement-icon-gray {
    background: #94a3b8;
  }
  
  .requirement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
  }
  
  .requirement-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .requirement-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #334155;
  }
  
  .requirement-list-gray li {
    color: #475569;
  }
  
  .requirement-list .check-icon {
    margin-top: 0.125rem;
  }
  
  .dash {
    width: 1.25rem;
    color: #94a3b8;
    flex-shrink: 0;
  }
  
  .requirement-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
  
  /* Steps Grid */
  .steps-grid {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  @media (min-width: 640px) {
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .steps-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .step-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
  }
  
  .step-number {
    width: 3rem;
    height: 3rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
  }
  
  .step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
  }
  
  .step-desc {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
  }

  /* Inline CTA below steps */
  .section-cta-inline {
    text-align: center;
    margin-top: 2.5rem;
  }

  /* Benefits Grid */
  .benefits-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
  
  .benefit-icon {
    color: #fbbf24;
    margin-bottom: 0.75rem;
  }
  
  .benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .benefit-desc {
    color: #94a3b8;
    margin: 0;
  }
  
  /* Pricing Card */
  .pricing-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 1rem;
    padding: 2rem;
    color: #fff;
  }
  
  @media (min-width: 768px) {
    .pricing-card {
      padding: 2.5rem;
    }
  }
  
  .pricing-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .pricing-label {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  
  .pricing-amount {
    margin-bottom: 1rem;
  }

  .price-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
  }

  .price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .price-old {
    font-size: 1.75rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: line-through;
    opacity: 0.7;
  }

  .price {
    font-size: 3rem;
    font-weight: 800;
  }

  .price-unit {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-left: 0.25rem;
  }
  
  .pricing-desc {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
  }
  
  .pricing-secure {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.75rem;
  }
  
  .pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  /* FAQ Section */
  .faq-container {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  @media (min-width: 640px) {
    .faq-container {
      padding: 2rem 2.5rem;
    }
  }
  
  .faq-item {
    border-bottom: 1px solid #e2e8f0;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
  }
  
  .faq-question:hover {
    color: #f59e0b;
  }
  
  .faq-icon {
    color: #f59e0b;
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 2000px;
    padding-bottom: 1.5rem;
  }
  
  .faq-answer p {
    color: #475569;
    line-height: 1.75;
  }
  
  .faq-contact {
    text-align: center;
    margin-top: 2rem;
    color: #475569;
  }
  
  .faq-contact a {
    font-weight: 600;
    color: #d97706;
  }
  
  .faq-contact a:hover {
    color: #b45309;
  }
  
  /* Comparison Table */
  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 20px rgba(0, 0, 0, 0.07);
    margin-top: 3rem;
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 560px;
  }
  .compare-table thead tr {
    background-color: #1a2332;
    color: #fff;
  }
  .compare-table thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
  }
  .compare-col-feature {
    width: 36%;
  }
  .compare-col-official {
    width: 32%;
    background-color: rgba(239, 68, 68, 0.15);
  }
  .compare-col-ours {
    width: 32%;
    background-color: rgba(34, 197, 94, 0.15);
  }
  .compare-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
  }
  .compare-table tbody tr:last-child {
    border-bottom: none;
  }
  .compare-table tbody tr:nth-child(odd) {
    background-color: #fff;
  }
  .compare-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
  }
  .compare-feature {
    padding: 0.875rem 1.25rem;
    font-weight: 500;
    color: #1a2332;
    font-size: 0.875rem;
  }
  .compare-cell {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    vertical-align: middle;
  }
  .compare-negative-cell {
    color: #dc2626;
    background-color: #fff5f5;
    display: table-cell;
  }
  .compare-positive-cell {
    color: #15803d;
    background-color: #f0fdf4;
    display: table-cell;
  }
  .compare-neutral {
    color: #374151;
  }
  .compare-free {
    color: #16a34a;
    font-weight: 600;
  }
  .compare-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 0.35rem;
  }
  .compare-icon-yes {
    color: #16a34a;
  }
  .compare-icon-no {
    color: #dc2626;
  }
  .compare-negative-cell,
  .compare-positive-cell {
    display: table-cell;
    vertical-align: middle;
  }

  /* Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .testimonial-stars {
    display: flex;
    gap: 0.125rem;
    color: #f59e0b;
  }
  .testimonial-star {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
  }
  .testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #374151;
    font-style: italic;
    flex: 1;
    margin: 0;
  }
  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-top: 0.875rem;
    border-top: 1px solid #f1f5f9;
  }
  .testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
  }
  .testimonial-meta {
    font-size: 0.8125rem;
    color: #6b7280;
  }
  @media (max-width: 991px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* CTA Section */
  .cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .cta-title {
      font-size: 2.25rem;
    }
  }
  
  .cta-subtitle {
    font-size: 1.25rem;
    color: #fef3c7;
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cta-features .check-icon {
    width: 1rem;
    height: 1rem;
  }
  
  /* ===================================================
     TDAC vs Thai Visa — Info Table
     =================================================== */
  .info-table-wrap {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .info-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 0.9375rem;
  }

  .info-th {
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .info-th-feature {
    background: #1e293b;
    color: #94a3b8;
    width: 36%;
  }

  .info-th-tdac {
    background: #f59e0b;
    color: #0f172a;
    width: 32%;
    text-align: center;
  }

  .info-th-visa {
    background: #334155;
    color: #fff;
    width: 32%;
    text-align: center;
  }

  .info-td {
    padding: 0.8125rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    vertical-align: middle;
    text-align: center;
  }

  .info-td-feature {
    font-weight: 500;
    color: #0f172a;
    text-align: left;
    background: #f8fafc;
  }

  .info-td-yes {
    color: #15803d;
    font-weight: 600;
  }

  .info-td-no {
    color: #dc2626;
  }

  .info-table tbody tr:last-child td {
    border-bottom: none;
  }

  .info-table tbody tr:hover td {
    background-color: rgba(0, 0, 0, 0.02);
  }

  .vs-closing {
    font-style: italic;
    color: #64748b;
    margin-top: 0.5rem;
  }

  /* ===================================================
     Common Mistakes — Numbered List
     =================================================== */
  .mistakes-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mistake-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .mistake-num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
  }

  .mistake-body {
    flex: 1;
  }

  .mistake-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.375rem;
  }

  .mistake-body p {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
  }

  /* ===================================================
     Callout Box — shared accent block
     =================================================== */
  .callout-box {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 1.25rem;
    margin-top: 2rem;
  }

  .callout-box p {
    color: #92400e;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  /* ===================================================
     Rejection & Recovery — Shared Content Styles
     =================================================== */
  .content-subheading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin: 1.75rem 0 0.75rem;
  }

  .content-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .content-bullets li {
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .content-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #f59e0b;
  }

  .content-steps {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .content-steps li {
    counter-increment: step-counter;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .content-steps li::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125em;
  }

  .content-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.75rem;
  }

  /* ===================================================
     Emergency Card — Without TDAC section
     =================================================== */
  .emergency-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.875rem;
    padding: 1.5rem 1.75rem;
    margin: 1.75rem 0;
  }

  .emergency-card__heading {
    font-weight: 700;
    color: #14532d;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }

  .content-steps--emergency li::before {
    background: #16a34a;
  }

  /* ===================================================
     FAQ — Rich answer (bullets inside accordion)
     =================================================== */
  .faq-answer--rich p + p,
  .faq-answer--rich p + ul,
  .faq-answer--rich ul + p {
    margin-top: 0.75rem;
  }

  .faq-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .faq-bullets li {
    padding-left: 1.25rem;
    position: relative;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .faq-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #0f172a;
  }

  /* ============================================================
     Footer — 4-column layout
     ============================================================ */

  .footer {
    background: #020617;
    color: #fff;
    padding: 3rem 0 0;
  }

  /* Main grid: stacked on mobile, 4 columns on desktop */
  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #1e293b;
  }

  @media (min-width: 640px) {
    .footer-main {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .footer-main {
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
    }
  }

  /* Column 1: Brand */
  .footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
  }

  .footer-tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
  }

  /* Column headings */
  .footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 1rem;
  }

  /* Navigation lists */
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-nav a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-nav a:hover {
    color: #fbbf24;
  }

  /* Column 4: Support */
  .footer-support {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-email {
    font-size: 0.8125rem;
    color: #94a3b8;
    overflow-wrap: anywhere;
  }

  .footer-support-note,
  .footer-support-langs {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
  }

  /* Bottom bar */
  .footer-bottom {
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  @media (min-width: 1024px) {
    .footer-bottom {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
  }

  .disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 672px;
    margin: 0;
  }

  .disclaimer strong {
    color: #94a3b8;
  }

  .disclaimer a {
    color: #64748b;
    text-decoration: underline;
  }

  .disclaimer a:hover {
    color: #94a3b8;
  }

  .copyright {
    font-size: 0.75rem;
    color: #64748b;
    flex-shrink: 0;
    margin: 0;
  }

  .page ul{list-style-type: disc;}
  .page a{text-decoration: underline;color:#0d6efd;}

  /* ============================================================
     About Us — Page Styles
     ============================================================ */

  /* Content container */
  .about-content {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-content .text-lg {
    margin-bottom: 1.25rem;
  }

  .about-content .text-lg a {
    color: #f59e0b;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .about-content .text-lg a:hover {
    color: #d97706;
  }

  /* Intro section */
  .about-intro {
    text-align: center;
  }

  /* Check list — What We Check section */
  .about-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
  }

  .about-check-list li strong {
    color: #0f172a;
  }

  .about-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: #16a34a;
  }

  /* Benefits grid — Why Travellers Choose section (dark bg) */
  .about-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 640px) {
    .about-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .about-benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .about-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: background 0.2s ease;
  }

  .about-benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .about-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .about-benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #fbbf24;
  }

  .about-benefit-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
  }

  .about-benefit-desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
  }

  /* Team profile card */
  .about-team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .about-team-photo {
    flex-shrink: 0;
    margin-bottom: 1.5rem;
  }

  .about-team-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0a500;
  }

  .about-team-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
  }

  .about-team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f0a500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
  }

  .about-team-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.25rem;
  }

  .about-team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .about-team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .about-team-social-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
  }

  .about-team-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  /* Desktop: horizontal layout */
  @media (min-width: 640px) {
    .about-team-card {
      flex-direction: row;
      text-align: left;
      padding: 2.5rem;
    }

    .about-team-photo {
      margin-bottom: 0;
      margin-right: 2rem;
    }

    .about-team-social {
      justify-content: flex-start;
    }
  }

  /* Transparency grid */
  .about-transparency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .about-transparency-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .about-transparency-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.75rem;
    text-align: center;
  }

  .about-transparency-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: #fef3c7;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-transparency-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #f59e0b;
  }

  .about-transparency-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
  }

  .about-transparency-desc {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
  }

  .about-transparency-desc a {
    color: #f59e0b;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .about-transparency-desc a:hover {
    color: #d97706;
  }

  /* CTA sub-text for about page */
  .cta-sub-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
  }

  .cta-sub-text a {
    color: #fbbf24;
    text-decoration: underline;
  }

  .cta-sub-text a:hover {
    color: #f59e0b;
  }