    /* Company Page Specific Styles */
    .company-hero {
      background: linear-gradient(135deg, #2c5e1e, #1a3a10);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
      border-radius: 0 0 50px 50px;
      margin-bottom: 3rem;
    }
    .company-hero h1 {
      color: white;
      margin-bottom: 1rem;
      font-size: 2.5rem;
    }
    .company-hero p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .company-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    .about-card {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      margin: auto;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(100, 128, 60, 0.15);
      max-width: 1200px;
    }

    .about-card h2 {
      color: #2c5e1e;
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }

    .about-card h3 {
      color: #2c5e1e;
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .why-section h2 {
      color: #2c5e1e;
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-size: 2.2rem;
      text-align: center;
    }   

    .why-grid {
      display: grid;
      place-items: center;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      margin-bottom: 2rem;
    }   

    .why-card {
      place-items: center;
      text-align: center;
      background: #2c5e1e;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(100, 128, 60, 0.15);
      max-width: 500px;
      min-height: 450px;
    }
    .why-card h2 {
      color: white;
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-size: 1.8rem;
      text-align: left;
    }

    .why-card p {
      color: white;
      line-height: 1.8;
      font-size: 1rem;
    }    

    .about-card p {
      color: #444;
      line-height: 1.8;
      font-size: 1rem;
    }

    .usp-section h2 {
      color: #2c5e1e;
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-size: 2.2rem;
      text-align: center;
    }   

    .usp{
      display: flex;
      flex-wrap: wrap;
      text-align: center;
      gap: 2rem;
      margin-bottom: 2rem;
      background: white;
      padding: 1rem;
      border-radius: 20px;      
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(100, 128, 60, 0.15);      
    }
    .usp-card {
      margin: auto;
      background: #f7fafc;
      color: #1e4a1a;
      max-width: 340px;
      padding: 1rem;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      min-height: 140px;
      line-height: 1.5;
      font-weight: 600;
    }

    .usp-card:hover {
      color: #e87c2a;
      background: #f0f4ea;
      transform: translatex(5px);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .stat-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(100, 128, 60, 0.15);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: #e87c2a;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #e87c2a;
      margin-bottom: 0.5rem;
    }

    .stat-card p {
      color: #666;
      font-weight: 500;
    }

    .values-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .value-item {
      padding: 1rem;
      background: #f7fafc;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .value-item i {
      font-size: 1.5rem;
    }

    .value-item:hover {
      background: #f0f4ea;
      transform: translateX(5px);
    }

    @media (max-width: 768px) {
      .company-hero h1 {
        font-size: 1.8rem;
      }
      .stats-grid {
        grid-template-columns: repeat(1, 1fr);
      }
      .values-list {
        grid-template-columns: 1fr;
      }
      .why-grid {
        grid-template-columns: repeat(1, 1fr);
      }      
    }
    