/* Main Content */
    .unique-about-container {
      max-width: 1100px;
      animation: fadeInUp 1.5s ease;
    }

    .unique-about-container h2 {
      margin: 30px 0 15px;
      color: #1a8f5d;
      position: relative;
      display: inline-block;
    }

    .unique-about-container h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: #21c283;
      display: block;
      margin-top: 5px;
      border-radius: 2px;
      animation: slideIn 1.5s ease;
    }

    .unique-about-container p {
      font-size: 16px;
      margin-bottom: 18px;
      animation: fadeIn 1.8s ease;
    }

    /* Why Choose Us Section */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .feature-box {
      background: #fff;
      border: 1px solid #e1efe7;
      padding: 40px 20px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    /* ✅ Lucide icon styling (svg) */
    .feature-box svg {
      display: block;
      margin: 0 auto 15px auto;
      color: #21c283;
      width: 60px;
      height: 60px;
      stroke-width: 1.8;
    }

    .feature-box p {
      font-size: 16px;
      font-weight: 500;
      color: #444;
    }

    .unique-about-container .highlight {
      color: rgba(16, 197, 129, 1);
      font-weight: bold;
    }

    .unique-about-container .last-line {
      font-size: 24px !important;
      text-align: center !important;
      padding: 20px 10px !important;
    }
    

    /* Animations */
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes slideIn {
      from {width: 0;}
      to {width: 60px;}
    }

    /* Responsive */
    @media (max-width: 768px) {
      .unique-about-container .about-header h1 {
        font-size: 32px;
      }
      .unique-about-container .unique-about-container {
        padding: 20px;
      }

      .unique-about-container .last-line {
        font-size: 18px !important;
      }
    
    }