/* style/review-customer-service.css */
.page-review-customer-service {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #c0c0c0; /* Light gray for text on dark background */
  background-color: #0A1931; /* Main background color */
}

.page-review-customer-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-review-customer-service__hero-section {
  background: linear-gradient(135deg, #0A1931, #2A3B5B);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-review-customer-service__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E6B325; /* Accent color for title */
  font-weight: bold;
}

.page-review-customer-service__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-review-customer-service__hero-btn {
  display: inline-block;
  background-color: #E6B325; /* Accent color for button */
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-review-customer-service__hero-btn:hover {
  background-color: #f5c742;
  transform: translateY(-2px);
}

.page-review-customer-service__content-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-review-customer-service__article {
  background-color: #1a2a44; /* Slightly lighter dark background for content */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-review-customer-service__section-title {
  font-size: 2.5em;
  color: #E6B325;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #E6B325;
  padding-bottom: 10px;
}

.page-review-customer-service__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-review-customer-service__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-review-customer-service__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-review-customer-service__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-review-customer-service__list li strong {
  color: #E6B325;
}

.page-review-customer-service__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-review-customer-service__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-review-customer-service__cta-button {
  display: inline-block;
  background-color: #E6B325;
  color: #0A1931;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(230, 179, 37, 0.4);
}

.page-review-customer-service__cta-button:hover {
  background-color: #f5c742;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 179, 37, 0.6);
}

.page-review-customer-service__cta-button--secondary {
  background-color: #0A1931;
  color: #E6B325;
  border: 2px solid #E6B325;
  box-shadow: none;
}

.page-review-customer-service__cta-button--secondary:hover {
  background-color: #1a2a44;
  color: #f5c742;
  border-color: #f5c742;
  transform: translateY(-3px);
}

.page-review-customer-service__faq-item {
  background-color: #2A3B5B; /* A complementary dark blue */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #E6B325;
}

.page-review-customer-service__faq-question {
  font-size: 1.4em;
  color: #E6B325;
  margin-bottom: 10px;
}

.page-review-customer-service__faq-answer {
  font-size: 1.05em;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-review-customer-service__hero-title {
    font-size: 2.5em;
  }

  .page-review-customer-service__hero-description {
    font-size: 1em;
  }

  .page-review-customer-service__section-title {
    font-size: 2em;
  }

  .page-review-customer-service__sub-title {
    font-size: 1.5em;
  }

  .page-review-customer-service__article {
    padding: 25px;
  }

  .page-review-customer-service__cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .page-review-customer-service__cta-button {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .page-review-customer-service__hero-title {
    font-size: 2em;
  }

  .page-review-customer-service__hero-section {
    padding: 80px 0;
  }

  .page-review-customer-service__section-title {
    font-size: 1.8em;
  }

  .page-review-customer-service__sub-title {
    font-size: 1.3em;
  }

  .page-review-customer-service__article {
    padding: 15px;
  }

  .page-review-customer-service__list {
    margin-left: 15px;
  }
}