.testimonial-section {
  text-align: center;
}

.testimonial-heading {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px 24px;
  max-width: 360px;
  text-align: left;
  position: relative;
}

.testimonial-card h3 {
  margin-top: 10px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.testimonial-text {
  font-size: 14px;
  color: #444;
  margin: 12px 0;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 13px;
  color: #222;
  font-weight: 500;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  gap: 40px;
  background-color: #f8f8f8;
}

.faq-left h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
}

.faq-right {
  flex: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 18px 22px;
  cursor: pointer;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.included-testimonial-section {
  background: #fff;
  padding: 50px 20px;
}

.included-heading {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.included-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-item {
  width: 200px;
  text-align: center;
}

.feature-item img {
  height: 140px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.4;
}