    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Assistant', Arial, sans-serif;
      font-size: 15px;
      color: #444;
      background: #fff;
    }

    a { color: inherit; text-decoration: none; }
    a:hover { color: #B1976B; }
    img { display: block; max-width: 100%; }

    /* ── TOP BAR (desktop only) ── */
    .header-topbar {
      background: #E7DFD2;
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .header-topbar .col { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
    .header-topbar .col-center { flex: 1; justify-content: center; }
    .header-topbar .col-right { justify-content: flex-end; }
    .header-topbar i { color: #B1976B; font-size: 15px; }
    .logo_image { max-height: 70px; width: auto; }

    /* ── MOBILE TOPBAR (hidden on desktop) ── */
    .header-topbar-mobile {
      display: none;
      background: #E7DFD2;
      padding: 10px 16px;
      align-items: center;
      justify-content: space-between;
    }
    .mobile-burger {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 22px;
      color: #333;
      padding: 4px;
    }
    .header-topbar-mobile .logo_image { max-height: 48px; width: auto; }
    .mobile-wa-btn {
      display: flex;
      align-items: center;
      font-size: 22px;
      color: #25D366;
    }

    /* ── DESKTOP NAV ── */
    .header-nav {
      background: #E7DFD2;
      border-top: 1px solid #d5c9b5;
      text-align: center;
      padding: 0;
    }
    .nav-list {
      list-style: none;
      display: inline-flex;
      margin: 0;
      padding: 0;
    }
    .nav-list li a {
      display: block;
      padding: 14px 22px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: #333;
      transition: color 0.3s ease;
    }
    .nav-list li a:hover { color: #B1976B; text-decoration: underline; }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
    }
    .mobile-overlay.open { display: block; }

    .mobile-nav {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: #fff;
      z-index: 999;
      display: flex;
      flex-direction: column;
      transition: left 0.3s ease;
      overflow-y: auto;
    }
    .mobile-nav.open { left: 0; }

    .mobile-nav-header {
      background: #E7DFD2;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mobile-nav-header .logo_image { max-height: 44px; width: auto; }
    .mobile-nav-close {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
    }
    .mobile-nav ul {
      list-style: none;
      padding: 12px 0;
    }
    .mobile-nav ul li a {
      display: block;
      padding: 13px 24px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: #333;
      border-bottom: 1px solid #f0ece4;
      transition: color 0.2s, background 0.2s;
    }
    .mobile-nav ul li a:hover { color: #B1976B; background: #faf7f2; }

    /* ── PAGE TITLE ── */
    .page-title {
      background: #B1976B;
      padding: 50px 40px;
      text-align: center;
    }
    .page-title h1 {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* ── MAIN LAYOUT ── */
    .team-member {
      max-width: 1200px;
      margin: 0 auto;
    }
    .team_member_header {
      display: flex;
      align-items: flex-start;
    }

    /* ── LEFT SIDEBAR ── */
    .team-sidebar {
      flex: 0 0 240px;
      display: flex;
      flex-direction: column;
    }
    .team_member_featured { width: 100%; }
    .team_member_avatar img { width: 100%; height: auto; display: block; }

    /* ── INFO PANEL (below photo) ── */
    .team_member_description {
      background: #E7DFD2;
      padding: 18px 20px 24px;
      width: 100%;
    }
    .team_member_position {
      font-size: 9.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #B1976B;
      margin-bottom: 5px;
    }
    .team_member_title {
      font-size: 1.55rem;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    .team_member_brief_info_title { display: none; }
    .team_member_brief_info_text p {
      font-size: 12.5px;
      line-height: 1.7;
      color: #333;
      margin-bottom: 0;
    }
    .team_member_details {
      margin-top: 16px;
    }
    .details_title {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    .team_member_details_email {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: #333;
    }
    .team_member_details_email::before {
      content: '';
      display: inline-block;
      width: 11px;
      height: 11px;
      border: 1.5px solid #777;
      flex-shrink: 0;
    }
    .team_member_details_label { display: none; }
    .team_member_details_value a { color: #333; word-break: break-all; }
    .team_member_details_value a:hover { color: #B1976B; }
    .team_member_socials { display: none; }

    /* ── BIO CONTENT AREA ── */
    .team_member_content {
      flex: 1;
      padding: 40px 48px;
    }
    .bio-text { margin-bottom: 36px; }
    .bio-text p {
      font-size: 15px;
      line-height: 1.9;
      color: #444;
      margin-bottom: 18px;
    }
    .content-section { margin-bottom: 40px; }
    .content-section h5 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #222;
      border-bottom: 2px solid #B1976B;
      padding-bottom: 8px;
      margin-bottom: 18px;
    }
    .content-section .section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #B1976B;
      margin-bottom: 10px;
      margin-top: 20px;
    }
    .content-section ul { padding-left: 20px; margin-bottom: 16px; }
    .content-section ul li { font-size: 14px; line-height: 2; color: #444; }

    /* ── FOOTER ── */
    .site-footer { background: #B1976B; color: #fff; }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }
    .footer-col { flex: 1; min-width: 200px; }
    .footer-col img { max-height: 52px; width: auto; margin-bottom: 16px; }
    .footer-col p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.85); }
    .footer-col a { color: rgba(255,255,255,0.85); }
    .footer-col a:hover { color: #fff; text-decoration: underline; }
    .footer-col h4 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .footer-col .office-address { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
    .footer-col .footer-email { font-size: 13px; color: rgba(255,255,255,0.85); }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      /* Show mobile topbar, hide desktop topbar + nav */
      .header-topbar { display: none; }
      .header-nav { display: none; }
      .header-topbar-mobile { display: flex; }

      /* Page title smaller */
      .page-title { padding: 28px 20px; }
      .page-title h1 { font-size: 1.4rem; }

      /* Stack sidebar and content */
      .team_member_header { flex-direction: column; }
      .team-sidebar { flex: none; width: 100%; }
      .team_member_content { padding: 24px 20px; }

      /* Footer stack */
      .footer-inner { flex-direction: column; padding: 40px 20px; gap: 32px; }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .header-topbar { padding: 12px 24px; }
      .team-sidebar { flex: 0 0 200px; }
      .team_member_content { padding: 32px 32px; }
      .page-title { padding: 36px 24px; }
    }