.dark-green-btn {
    background-color: #06402F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .dark-green-btn:hover {
    background-color: #075A40;
    transform: scale(1.05);
    color: white !important;
  }

  .text-green{
    color: #06402F;
  }
  
  .text-green:hover {
    color: #075A40;
  }

