.needs {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}


.tabs {
    display: flex;
    flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
    margin-bottom: 20px;
}
  
.tab-button {
    flex: 1;
    padding: 15px;
    text-align: center;
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    margin-bottom: 5px; /* Add margin for mobile view */
}
  
.tab-button.active {
    background-color: #2c3e50;
}
  
.tab-content {
    display: none;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 0 0 5px 5px;
}
  
.tab-content.active {
    display: block;
}
  
.tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}
  
.tab-content  p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
  
.tab-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
  
.tab-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}
  
  /* Mobile View */
@media (max-width: 768px) {
    .tab-button {
      flex: 1 1 100%; /* Full width for mobile */
      margin-right: 0;
      border-radius: 5px;
    }
  
    .tabs {
      flex-direction: column; /* Stack tabs vertically */
    }
  
    .tab-content {
      padding: 15px;
    }
  
    .tab-content h3 {
      font-size: 20px;
    }
  
    .tab-content p {
      font-size: 14px;
    }
  
    .tab-content ul li {
      font-size: 14px;
    }
}


