
      
      .about-page {
        padding: 4rem 0;
        max-width: 1200px;
        margin: 0 auto;
      }

      .about-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .about-header h1 {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 1rem;
      }

      .about-header p {
        font-size: 1.25rem;
        color: var(--color-text-secondary);
        max-width: 700px;
        margin: 0 auto;
      }

      .about-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
        margin-bottom: 5rem;
      }

      .about-intro-section {
        background: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
      }

      .about-intro-section h2 {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
      }

      .about-intro-section p {
        color: var(--color-text-secondary);
        line-height: 1.7;
        margin-bottom: 1rem;
      }

      .about-visual {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
      }

      .about-visual img {
        width: 100%;
        height: auto;
        display: block;
      }

      .mission-values {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-bottom: 5rem;
      }

      .mv-card {
        background: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        transition: all var(--transition-normal);
      }

      .mv-card:hover {
        transform: translateY(-8px);
        border-color: var(--color-primary);
        box-shadow: var(--shadow-lg);
      }

      .mv-card h3 {
        font-size: 1.8rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
      }

      .mv-card ul {
        list-style: none;
        padding: 0;
      }

      .mv-card li {
        position: relative;
        padding-left: 1.8rem;
        margin-bottom: 1rem;
        color: var(--color-text-secondary);
      }

      .mv-card li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
      }

      .project-credits {
        text-align: center;
        background: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 3rem;
        box-shadow: var(--shadow-md);
        margin-top: 2rem;
      }

      .project-credits h2 {
        font-family: var(--font-heading);
        font-size: 2.2rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
      }

      .project-credits p {
        color: var(--color-text-secondary);
        max-width: 800px;
        margin: 0 auto 2rem;
        font-size: 1.1rem;
      }

      .credits-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
      }

      .credit-member {
        text-align: center;
      }

      .credit-member .avatar-placeholder {
        width: 120px;
        height: 120px;
        background: var(--color-surface);
        border-radius: 50%;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--color-primary);
        border: 3px solid var(--color-primary);
        box-shadow: var(--glow-primary);
      }

      .credit-member strong {
        display: block;
        color: var(--color-primary);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }

      .credit-member span {
        color: var(--color-text-muted);
      }

      @media (max-width: 968px) {
        .about-layout, .mission-values {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        .about-header h1 {
          font-size: 2.8rem;
        }

        .credits-list {
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }
      }

      @media (max-width: 600px) {
        .about-intro-section, .mv-card, .project-credits {
          padding: 2rem;
        }
      }
    