 .about-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    padding: 3rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  .container {
    max-width: 960px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1e40af, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
  }

  .page-header p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .section:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .section h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section h2 svg {
    color: #4f46e5;
    width: 24px;
    height: 24px;
  }

  .section p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .value-card {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #4f46e5;
  }

  .value-card h3 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
  }

  .value-card p {
    font-size: 0.95rem;
    margin: 0;
  }

  @media (max-width: 768px) {
    .page-header h1 {
      font-size: 2.2rem;
    }
    .page-header p {
      font-size: 1.1rem;
    }
    .section {
      padding: 1.5rem;
    }
  }