.about-faq-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.about-faq-section::before {
  content: "✦";
  position: absolute;
  font-size: 15rem;
  opacity: 0.03;
  top: -2rem;
  left: -2rem;
  transform: rotate(-10deg);
}

.about-faq-section::after {
  content: "✦";
  position: absolute;
  font-size: 15rem;
  opacity: 0.03;
  bottom: -2rem;
  right: -2rem;
  transform: rotate(10deg);
}

.about-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem;
}

.about-card, .faq-card {
  flex: 1 1 45%;
  min-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-card:hover, .faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-card::before, .faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #c71585 0%, #8a2be2 100%);
  z-index: 2;
}

.card-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.card-title span {
  margin-right: 0.8rem;
  font-size: 2rem;
}

.about-content {
  line-height: 1.7;
  color: #555;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c71585;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #777;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
}

.faq-question span {
  color: #c71585;
  margin-right: 0.5rem;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .about-faq-container {
    flex-direction: column;
  }
  
  .about-card, .faq-card {
    width: 100%;
  }
  
  .about-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 1 1 50%;
    margin-bottom: 1rem;
  }
}
