#fw-section-custom-html-3e7af69a-0c47-4df5-9f0c-18046b715e14 {
/* Dark Mode Section Styles */
.review-section.dark-mode {
  background-color: #000000; /* Black background for the entire section */
  padding: 40px;
}

.review-content {
  text-align: center; /* Center-aligns the content inside this container */
}

.review-content h2 {
  font-family: Arial, sans-serif;
  color: #ffffff; /* White text for headings */
  margin-bottom: 10px; /* Adds spacing below the heading */
}

.review-content p {
  font-family: Arial, sans-serif;
  color: #ffffff; /* White text for descriptions */
  margin-bottom: 20px; /* Adds spacing below the paragraph */
}

/* Review Container for Desktop View */
.review-container {
  display: flex;
  flex-wrap: nowrap; /* Ensures 1x4 layout in desktop view */
  justify-content: center;
  gap: 20px;
}

/* Individual Review Card */
.review-card {
  width: 180px;
  background-color: #000000; /* Black background for cards */
  border: 1px solid #444; /* Subtle border for distinction */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.review-img {
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff; /* White border for image */
}

.review-card h4 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ffffff; /* White text for names */
}

.review-card p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #ffffff; /* White text for reviews */
}

.stars {
  color: #f1c40f; /* Gold color for stars */
}

/* Mobile View */
@media (max-width: 768px) {
  .review-container {
    flex-wrap: wrap; /* Allows 2x2 layout in mobile view */
    gap: 10px;
  }

  .review-card {
    width: 45%; /* Adjust card width for two cards per row */
  }
}

}