.tab-containeruno {
    width: 100%;
    /* max-width: 700px; */
    background-color: var(--web-bg);
    /* border-radius: 10px; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
    overflow: hidden;
    position: relative;
  }
  
  .tabsuno {
    padding: 0; /* Increased padding */
    background-color: white;
    padding:15px;
    padding-top:30px;
  }

  @media (max-width: 768px){
    .tabsuno {
      background: unset;
    }
    
    .tab-containeruno .tabsuno .leadstitle2{
      left: 14px !important;
    }

    .noboxshadow{
      box-shadow: unset !important;
    }
  }
  
  .tab-linkssuno {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px solid #f0f0f0; */
  }
  
  .tab-linksuno {
    background: none !important;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0px; /* Increased padding for spacing */
    /* color: #ccc; */
    width: 100%;
    text-align: start;
    cursor: pointer;
    /* position: relative; */
    transition: color 0.3s ease;
    outline:none;
  }
  
  .tab-linksuno.active,
  .tab-linksuno:hover {
    /* color: var(--web-hover); */
  }
  
  .tab-linksuno i {
    margin-right: 10px;
  }
  
  .tab-linksuno::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -1px;
    left: 50%;
    /* background: linear-gradient(45deg, #fd4e4e, #ff8d8d); */
    transition: all 0.4s ease;
    outline:none;
  }
  
  .tab-linksuno.active::after {
    width: 100%;
    outline:none;
    left: 0;
  }
  
  .tab-contentuno {
    display: none;
    animation: fadeInUp 0.5s ease;
    padding: 0px 0px 15px 0px;
  }
  
  .tab-contentuno.active {
    display: block;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Buttons */
  .cta-btn {
    display: inline-block;
    padding: 12px 25px; /* More padding */
    background: linear-gradient(45deg, #b84de5, #7d41ff); /* Purple gradient */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease;
    font-weight: 500;
    margin-top: 20px;
  }
  
  .cta-btn:hover {
    background: linear-gradient(45deg, #9c3bce, #6b3ee8); /* Darker gradient on hover */
  }
  
  /* Form Styles */
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px; /* Increased padding for inputs */
    margin-bottom: 15px;
    border: 1px solid #ddd;
    /* border-radius: 10px; */
    transition: border 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #b84de5;
    outline: none;
  }
  
  /* FAQ List */
  .faq-list {
    padding: 0;
    list-style: none;
  }
  
  .faq-list li {
    margin-bottom: 10px;
  }
  
  .faq-list li strong {
    font-weight: 600;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 600px) {
    .tab-linkssuno {
      flex-direction: column;
      align-items: center;
    }
  
    .tab-linksuno {
      text-align: center;
      width: 100%;
      padding: 15px 0;
    }
  }