/* About page styles */
  .tl-about-page {
    margin-top: -1.5rem;
  }

  .tl-about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 520px;
    display: flex;
    align-items: end;
    color: var(--tl-ivory);
    border: 1px solid rgba(246, 241, 231, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    background:
      linear-gradient(135deg, #102448 0%, #0C1830 48%, #101818 100%);
  }

  .tl-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(90deg, rgba(8, 11, 11, 0.92) 0%, rgba(8, 11, 11, 0.76) 42%, rgba(8, 11, 11, 0.38) 100%),
      url('/assets/img/flag.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .tl-about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(195, 165, 23, 0.18), transparent 28%),
      radial-gradient(circle at 88% 18%, rgba(159, 74, 31, 0.14), transparent 24%);
    z-index: 2;
    pointer-events: none;
  }

  .tl-about-hero-inner {
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 5vw, 5rem);
    width: 100%;
  }

  .tl-kicker {
    color: var(--tl-gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
  }

  .tl-about-hero h1 {
    font-family: 'Intan';
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 960px;
    margin-bottom: 0;
  }

  .tl-about-hero p {
    max-width: 780px;
    color: rgba(246, 241, 231, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
  }

  .tl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .tl-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 900px;
  }

  .tl-about-stat {
    background: rgba(246, 241, 231, 0.96);
    color: var(--tl-text-dark);
    border-radius: 0.9rem;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .tl-about-stat strong {
    display: block;
    color: var(--tl-navy);
    font-family: 'Intan';
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .tl-about-stat span {
    color: var(--tl-text-muted);
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .tl-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .tl-section-title {
    font-family: 'Intan';
    color: var(--tl-text-dark);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .tl-section-copy {
    color: var(--tl-text-muted);
    font-size: 1.06rem;
  }

  .tl-profile-panel {
    background: var(--tl-ivory);
    border-radius: 1.25rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(16, 36, 72, 0.08);
    box-shadow: 0 18px 45px rgba(16, 36, 72, 0.08);
  }

  .tl-profile-panel h2 {
    font-family: 'Intan';
    color: var(--tl-text-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .tl-profile-panel p {
    color: var(--tl-text-muted);
    font-size: 1.07rem;
  }

  .tl-profile-card {
    background:
      linear-gradient(135deg, rgba(16, 36, 72, 0.98), rgba(8, 11, 11, 0.98));
    color: var(--tl-ivory);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
  }

  .tl-profile-card h3 {
    font-family: 'Intan';
    color: var(--tl-gold);
    font-size: 1.7rem;
    letter-spacing: -0.03em;
  }

  .tl-profile-card p,
  .tl-profile-card li {
    color: rgba(246, 241, 231, 0.84);
  }

  .tl-info-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.85rem;
  }

  .tl-info-list li {
    display: flex;
    gap: 0.75rem;
  }

  .tl-info-list i {
    color: var(--tl-gold);
    margin-top: 0.25rem;
  }

  .tl-card {
    height: 100%;
    background: var(--tl-white);
    border: 1px solid rgba(16, 36, 72, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(16, 36, 72, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .tl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(16, 36, 72, 0.11);
  }

  .tl-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(159, 74, 31, 0.1);
    color: var(--tl-copper);
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .tl-card h3 {
    font-family: 'Intan';
    color: var(--tl-navy);
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
  }

  .tl-card p {
    color: var(--tl-text-muted);
    margin-bottom: 0;
  }

  .tl-practice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--tl-copper);
    font-weight: 700;
    margin-top: 1rem;
  }

  .tl-dark-panel {
    background:
      linear-gradient(135deg, rgba(16, 36, 72, 0.96), rgba(8, 11, 11, 0.98));
    color: var(--tl-ivory);
    border-radius: 1.25rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(246, 241, 231, 0.14);
  }

  .tl-dark-panel h2 {
    font-family: 'Intan';
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .tl-dark-panel p {
    color: rgba(246, 241, 231, 0.82);
  }

  .tl-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
  }

  .tl-check-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: rgba(246, 241, 231, 0.88);
  }

  .tl-check-list i {
    color: var(--tl-gold);
    margin-top: 0.25rem;
  }

  .tl-cta {
    background: var(--tl-ivory);
    border-radius: 1.25rem;
    padding: clamp(2rem, 5vw, 4rem);
    border-left: 6px solid var(--tl-copper);
  }

  .tl-cta h2 {
    font-family: 'Intan';
    color: var(--tl-text-dark);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .tl-cta p {
    color: var(--tl-text-muted);
    max-width: 760px;
  }

  .tl-disclaimer {
    color: var(--tl-text-muted);
  }

  @media (max-width: 767.98px) {
    .tl-about-hero {
      min-height: auto;
    }

    .tl-about-hero-inner {
      padding: 2rem 1.25rem;
    }

    .tl-about-hero::before {
      background-image:
        linear-gradient(90deg, rgba(8, 11, 11, 0.94), rgba(8, 11, 11, 0.78)),
        url('/assets/img/flag.webp');
    }

    .tl-about-stats {
      grid-template-columns: 1fr;
      margin-top: 2rem;
    }

    .tl-profile-panel,
    .tl-dark-panel,
    .tl-cta {
      padding: 1.5rem;
    }
  }
