/* 
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    } */
/* 
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
} */

/* Tabs */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-buttons button {
  padding: 12px 20px;
  margin: 5px;
  border: none;
  border-radius: 8px 8px 0 0;
  background: #f1f1f1;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.tab-buttons button.active {
  /* background: #2e5ae8; */
  background: #2086b8;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 0 8px 8px 8px;
  text-align: left;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.tab-content ul li {
  margin: 8px 0;
  list-style: none;
}

.tab-content ul li::before {
  content: "✔";
  color: #2e5ae8;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  /* h1 {
    font-size: 2rem;
  } */

  .tab-buttons button {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .tab-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-buttons button {
    border-radius: 8px;
  }
}