.about-page {
    background-color: #f9f9f9;
  }

  .about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5f3f 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .about-section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .about-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 10px;
  }

  .about-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
  }

  .values-grid, .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }

  .value-item, .why-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
  }

  .value-item h3, .why-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
  }

  .services-list {
    list-style: none;
    padding: 0;
  }

  .services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
  }

  .services-list li:last-child {
    border-bottom: none;
  }

  .about-contact {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5f3f 100%);
    color: white;
    text-align: center;
  }

  .about-contact h2 {
    color: white;
    border-bottom-color: white;
  }

  .about-contact p {
    color: rgba(255,255,255,0.9);
  }

  .contact-info {
    margin: 30px 0;
    font-size: 1.1rem;
  }

  .about-contact .btn {
    margin-top: 20px;
    background-color: white;
    color: var(--primary);
  }

  @media (max-width: 768px) {
    .about-hero-content h1 {
      font-size: 2rem;
    }

    .about-hero-content p {
      font-size: 1rem;
    }

    .about-section {
      padding: 20px;
    }

    .about-section h2 {
      font-size: 1.5rem;
    }
  }