/* ========================================
   TPPL About Page Stylesheet
   Elegant storytelling and brand identity
   ======================================== */

   .about-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    min-height: 70vh;
  }
  
  .about-article {
    background: linear-gradient(
      135deg,
      rgba(122, 62, 163, 0.08) 0%,
      rgba(90, 95, 163, 0.06) 50%,
      rgba(163, 62, 120, 0.08) 100%
    );
    border: 1px solid rgba(122, 62, 163, 0.2);
    border-radius: 16px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  
  /* Header Section */
  .about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(122, 62, 163, 0.3);
    position: relative;
  }
  
  .about-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #B794F4 50%, transparent 100%);
  }
  
  .about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #D6BCFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-subtitle {
    font-size: 1.3rem;
    color: rgba(214, 188, 250, 0.85);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Main Content */
  .about-content {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .about-content p {
    margin-bottom: 1.5rem;
  }
  
  .about-content p:first-of-type {
    font-size: 1.25rem;
    color: rgba(214, 188, 250, 0.95);
    line-height: 1.8;
  }
  
  .about-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #B794F4;
    letter-spacing: -0.01em;
  }
  
  .about-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #D6BCFA;
    letter-spacing: -0.01em;
  }
  
  .about-content ul,
  .about-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
  }
  
  .about-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
  }
  
  .about-content ul li::marker {
    color: #B794F4;
  }
  
  .about-content ol li::marker {
    color: #B794F4;
    font-weight: 600;
  }
  
  .about-content strong,
  .about-content b {
    color: #D6BCFA;
    font-weight: 600;
  }
  
  .about-content em,
  .about-content i {
    color: rgba(214, 188, 250, 0.9);
  }
  
  .about-content a {
    color: #B794F4;
    text-decoration: none;
    border-bottom: 1px solid rgba(183, 148, 244, 0.3);
    transition: all 0.2s ease;
  }
  
  .about-content a:hover {
    color: #D6BCFA;
    border-bottom-color: #D6BCFA;
  }
  
  /* Mission Section */
  .about-mission {
    background: rgba(122, 62, 163, 0.1);
    border-left: 4px solid #B794F4;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 8px;
  }
  
  .mission-title {
    font-size: 2rem;
    font-weight: 600;
    color: #B794F4;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  
  .mission-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .mission-content p {
    margin-bottom: 1rem;
  }
  
  .mission-content p:last-child {
    margin-bottom: 0;
  }
  
  /* Values Section */
  .about-values {
    background: rgba(163, 62, 120, 0.1);
    border-left: 4px solid #D6BCFA;
    padding: 2.5rem;
    border-radius: 8px;
  }
  
  .values-title {
    font-size: 2rem;
    font-weight: 600;
    color: #D6BCFA;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  
  .values-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .values-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .values-content li {
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
  }
  
  .values-content li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #D6BCFA;
    font-size: 1.2rem;
  }
  
  .values-content p {
    margin-bottom: 1rem;
  }
  
  .values-content p:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .about-page-content {
      padding: 3rem 2rem 5rem;
    }
  
    .about-article {
      padding: 3rem 2.5rem;
    }
  
    .about-title {
      font-size: 3rem;
    }
  
    .about-subtitle {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-page-content {
      padding: 2rem 1.5rem 4rem;
    }
  
    .about-article {
      padding: 2.5rem 2rem;
      border-radius: 12px;
    }
  
    .about-title {
      font-size: 2.5rem;
    }
  
    .about-subtitle {
      font-size: 1.1rem;
    }
  
    .about-content {
      font-size: 1rem;
    }
  
    .about-content p:first-of-type {
      font-size: 1.1rem;
    }
  
    .about-content h2 {
      font-size: 1.9rem;
    }
  
    .about-content h3 {
      font-size: 1.5rem;
    }
  
    .about-mission,
    .about-values {
      padding: 2rem 1.5rem;
    }
  
    .mission-title,
    .values-title {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .about-page-content {
      padding: 1.5rem 1rem 3rem;
    }
  
    .about-article {
      padding: 2rem 1.5rem;
    }
  
    .about-title {
      font-size: 2rem;
    }
  
    .about-subtitle {
      font-size: 1rem;
    }
  
    .about-header::after {
      width: 120px;
    }
  }