/* ===============================
   ABOUT PAGE – AIRBNB / MNC STYLE
=============================== */

.about-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 20px 90px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    background: #ffffff;
    color: #111;
  }
  
  /* ===============================
     HEADER
  =============================== */
  .about-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .about-logo {
    height: 64px;
    margin-bottom: 14px;
  }
  
  .about-header h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #111;
  }
  
  /* ===============================
     INTRO (TYPING TEXT)
  =============================== */
  .about-intro {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
  }
  
  #typing-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    white-space: pre-wrap;
  }
  
  /* ===============================
     DIVIDER
  =============================== */
  .divider {
    height: 1px;
    background: #eaeaea;
    margin: 36px 0;
  }
  
  /* ===============================
     TEAM SECTION
  =============================== */
  .about-team h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
  }
  
  .team-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
  }
  
  /* ===============================
     TEAM CARD
  =============================== */
  .team-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
  }
  
  .team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
  }
  
  .team-card span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
  }
  
  /* Typed description text */
  .team-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
  }
  
  /* Email */
  .team-email {
    font-size: 14px;
    color: #111;
    font-weight: 500;
  }
  
  /* ===============================
     TEAM NOTE
  =============================== */
  .team-note {
    margin-top: 28px;
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  
  /* ===============================
     FOOTER
  =============================== */
  .about-footer {
    text-align: center;
    margin-top: 44px;
    font-size: 12px;
    color: #888;
  }
  
  /* ===============================
     MOBILE OPTIMIZATION
  =============================== */
  @media (max-width: 600px) {
    .about-header h1 {
      font-size: 24px;
    }
  
    #typing-intro {
      font-size: 15px;
    }
  
    .team-card {
      padding: 18px;
    }
  }
  