body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f0f4f8;
  color: #333;
}

.header {
  background-color: #111729;
  color: white;
  padding: 20px 50px;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.header h1 {
  font-size: 2.5em;
  margin: 0;
}

.title {
  margin-top: 30px;
  text-align: right;
}

.title h1 {
  margin: 0;
  font-size: 2em;
}

.help-center {
  font-size: 0.9em;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo img {
  height: 100px;
}

.search-bar {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.search-bar input {
  width: 50%;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid #2e2e4d;
  font-size: 1em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #111729;
  color: white;
  margin: 20px 0;
}

.search-bar input::placeholder {
  color: #b0b0c3;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}

.card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 250px;
}

.card h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #1a1a2e;
}

.card p {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 20px;
}

.card a {
  color: #6c63ff;
  text-decoration: none;
  font-weight: 600;
}

.faq-section {
  text-align: center;
  padding: 100px 20px 50px;
}

.faq-section h2 {
  font-size: 2em;
  margin: 0 0 10px;
}

.faq-section p {
  font-size: 1em;
  color: #666;
  margin: 0 0 30px;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  margin: 10px auto;
  width: 80%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  margin: 0;
  font-size: 1em;
}

.faq-item i {
  color: #6c63ff;
}



.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category {
  margin-bottom: 20px;
}

.category-header {
  background-color: #111729;
  /* Temaya uygun yeşil */
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px 4px 0 0;
  font-size: 18px;
  font-weight: bold;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}

.product-table th,
.product-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.product-table th {
  background-color: #cdd0d7;
  color: #333;
  font-weight: bold;
}

.product-table td {
  background-color: #fff;
  font-weight: bold;
}


@media (max-width: 768px) {
  .header h1 {
    font-size: 2em;
  }

  .header p {
    font-size: 1em;
  }

  .search-bar input {
    width: 80%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    position: static;
    transform: none;
    padding: 0;
  }

  .card {
    width: 80%;
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5em;
  }

  .header p {
    font-size: 0.9em;
  }

  .search-bar input {
    width: 90%;
    padding: 15px;
  }

  .card {
    width: 90%;
  }
}