body {
  margin: 0;
  padding: 0;
  background-color: #f4f1ea;
}

header {
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 200px;
  background-color: rgb(175, 165, 165);
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  padding: 15px;
}

a {
  text-decoration: none;
  color: white;
  display: inline-block;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 5px;
  border-radius: 5px;
  background-color: white;
  transition: width 0.3s ease;
}

header a:hover::after {
  width: 100%;
}

.faq-container {
  max-width: 700px;
  width: 100%;
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  margin:0 auto;
  margin-bottom:30px;
}

h1 {
  margin: 0 0 20px 0;
  padding: 10px 15px;
  text-align: center;
}

.faq-item {
  padding: 15px 20px;
  margin-bottom: 15px;
}

.faq-item h3 {
  padding: 8px 12px;
  margin: 0 0 10px 0;
  text-align: center;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}