  .hero {
            background: linear-gradient(135deg, rgba(20, 20, 40, 0.35), rgba(20, 20, 40, 0.5)), url('img/bg-about.jpeg') center/cover no-repeat;
            color: white;
            padding: 160px 0 160px;
            text-align: center;
        }
        section {
            padding: 80px 0;
        }
      /* Additional styles for About page */
      .timeline {
        position: relative;
        padding: 2rem 0;
      }
      .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: var(--primary-green);
        transform: translateX(-50%);
      }
      .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        position: relative;
      }
      .timeline-item.left {
        justify-content: flex-start;
      }
      .timeline-item.right {
        justify-content: flex-end;
      }
      .timeline-content {
        width: 45%;
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px var(--shadow);
        position: relative;
      }
      .timeline-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--primary-green);
        border-radius: 50%;
        transform: translateY(-50%);
      }
      .timeline-item.left .timeline-content::before {
        right: -30px;
      }
      .timeline-item.right .timeline-content::before {
        left: -30px;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }
      .stat-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px var(--shadow);
      }
      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 0.5rem;
      }
      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }
      .team-card {
        text-align: center;
        padding: 2rem;
        background: white;
      
        box-shadow: 0 5px 20px var(--shadow);
      }
      .team-card img {
        width: 100%;
        height: 250px;
      
        object-fit: contain;
        margin-bottom: 1rem;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 3rem;
      }
      .contact-info, .contact-form {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px var(--shadow);
      }
      .contact-info ul {
        list-style: none;
      }
      .contact-info ul li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }
      .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .contact-form input, .contact-form textarea {
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 10px;
        font-size: 1rem;
      }
      .contact-form textarea {
        resize: vertical;
        min-height: 150px;
      }
      .contact-form button {
        background: var(--accent-orange);
        color: white;
        padding: 15px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .contact-form button:hover {
        background: #ea580c;
      }
      .privacy {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      a {
        color: var(--primary-green);
        text-decoration: none;
      }
      @media (max-width: 768px) {
        .timeline::before {
          left: 20px;
        }
        .timeline-item {
          flex-direction: column;
          align-items: flex-start;
        }
        .timeline-content {
          width: 100%;
        }
        .timeline-item.left .timeline-content::before,
        .timeline-item.right .timeline-content::before {
          left: -10px;
          top: -10px;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
      }
   