/* style/pg66-reviews-customer-service.css */

/* Variables for colors */
:root {
  --pg66-primary-color: #0A2463;
  --pg66-secondary-color: #FFD700;
  --pg66-text-dark: #2c3e50;
  --pg66-text-light: #ffffff;
  --pg66-background-light: #f8f9fa;
  --pg66-background-dark: #1a1a2e;
}

.page-pg66-reviews-customer-service {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--pg66-text-dark);
  background-color: var(--pg66-background-light);
}

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

.page-pg66-reviews-customer-service__hero-section {
  background: linear-gradient(135deg, var(--pg66-primary-color), #2A488C);
  color: var(--pg66-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-pg66-reviews-customer-service__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--pg66-text-light);
  font-weight: bold;
  line-height: 1.2;
}

.page-pg66-reviews-customer-service__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-pg66-reviews-customer-service__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-pg66-reviews-customer-service__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-pg66-reviews-customer-service__btn--primary {
  background-color: var(--pg66-secondary-color);
  color: var(--pg66-primary-color);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-pg66-reviews-customer-service__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-pg66-reviews-customer-service__btn--secondary {
  background-color: transparent;
  color: var(--pg66-secondary-color);
  border: 2px solid var(--pg66-secondary-color);
}

.page-pg66-reviews-customer-service__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-pg66-reviews-customer-service__content-section {
  padding: 60px 0;
  background-color: var(--pg66-background-light);
}

.page-pg66-reviews-customer-service__text-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.page-pg66-reviews-customer-service__section-title {
  font-size: 2.5em;
  color: var(--pg66-primary-color);
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 3px solid var(--pg66-secondary-color);
  padding-bottom: 10px;
}

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

.page-pg66-reviews-customer-service__text-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.page-pg66-reviews-customer-service__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-pg66-reviews-customer-service__text-block li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555;
}

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

.page-pg66-reviews-customer-service__cta-final {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #f0f4f8;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
}

.page-pg66-reviews-customer-service__cta-final p {
  font-size: 1.5em;
  color: var(--pg66-primary-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-pg66-reviews-customer-service__cta-final .page-pg66-reviews-customer-service__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-pg66-reviews-customer-service__hero-title {
    font-size: 2.5em;
  }
  .page-pg66-reviews-customer-service__hero-subtitle {
    font-size: 1.2em;
  }
  .page-pg66-reviews-customer-service__section-title {
    font-size: 2em;
  }
  .page-pg66-reviews-customer-service__sub-title {
    font-size: 1.5em;
  }
  .page-pg66-reviews-customer-service__text-block {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-pg66-reviews-customer-service__hero-section {
    padding: 80px 0;
  }
  .page-pg66-reviews-customer-service__hero-title {
    font-size: 2em;
  }
  .page-pg66-reviews-customer-service__hero-subtitle {
    font-size: 1em;
  }
  .page-pg66-reviews-customer-service__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-pg66-reviews-customer-service__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-pg66-reviews-customer-service__section-title {
    font-size: 1.8em;
  }
  .page-pg66-reviews-customer-service__sub-title {
    font-size: 1.3em;
  }
  .page-pg66-reviews-customer-service__text-block {
    padding: 20px;
  }
  .page-pg66-reviews-customer-service__cta-final p {
    font-size: 1.2em;
  }
  .page-pg66-reviews-customer-service__cta-final .page-pg66-reviews-customer-service__btn {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-pg66-reviews-customer-service__hero-section {
    padding: 60px 0;
  }
  .page-pg66-reviews-customer-service__hero-title {
    font-size: 1.8em;
  }
  .page-pg66-reviews-customer-service__hero-subtitle {
    font-size: 0.9em;
  }
  .page-pg66-reviews-customer-service__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-pg66-reviews-customer-service__section-title {
    font-size: 1.5em;
  }
  .page-pg66-reviews-customer-service__sub-title {
    font-size: 1.2em;
  }
  .page-pg66-reviews-customer-service__text-block p,
  .page-pg66-reviews-customer-service__text-block li {
    font-size: 0.95em;
  }
  .page-pg66-reviews-customer-service__text-block {
    padding: 15px;
  }
  .page-pg66-reviews-customer-service__cta-final p {
    font-size: 1em;
  }
}