body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}


main {
  padding: 100px;
}

.about {
  margin-bottom: 40px;
}

.about h2 {
  color: #444;
  margin-bottom: 20px;
  position: relative;
  text-align:center;
}

.about h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #f39c12;
  position: absolute;
  bottom: -10px;
  left: 48.5%;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeIn 2s;
  flex-direction:column;
}

.about-text {
  flex: 1;
  color: #555;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.faq {
  margin-bottom: 40px;
}

.faq h2 {
  color: #444;
  margin-bottom: 20px;
  position: relative;
  text-align:center;
}

.faq h2::after {
  content: '';
  width: 50px;
  height: 2px;
  background: #f39c12;
  position: absolute;
  bottom: -10px;
  left: 48.5%;
}

.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: #f9f9f9;
}

.faq-question {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}