.page-testimonials {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0f1a2b; /* Darker background for the entire page */
  line-height: 1.6;
}

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

/* Hero Section */
.page-testimonials__hero-section {
  background: linear-gradient(135deg, #1A2B4C, #0f1a2b); /* Primary dark blue to even darker blue */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-testimonials__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-testimonials__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-testimonials__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-testimonials__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

/* General Section Styling */
.page-testimonials__section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Primary dark blue for sections */
  margin-bottom: 20px;
}

.page-testimonials__section:nth-of-type(even) {
  background-color: #0f1a2b; /* Alternating darker background */
}

.page-testimonials__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  position: relative;
}

.page-testimonials__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.page-testimonials__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -40px auto 60px auto;
  color: #b0b0b0;
}

/* Buttons */
.page-testimonials__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.2s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-testimonials__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B4C; /* Dark blue text */
  margin-top: 20px;
}

.page-testimonials__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-testimonials__btn--secondary {
  background-color: #1A2B4C; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-top: 30px;
}

.page-testimonials__btn--secondary:hover {
  background-color: #2b3e61;
  transform: translateY(-2px);
}

.page-testimonials__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-testimonials__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-testimonials__btn--link {
  background-color: transparent;
  color: #FFD700;
  padding: 10px 0;
  font-size: 1em;
  text-decoration: underline;
  border: none;
  display: inline-block;
  margin-top: 15px;
}

.page-testimonials__btn--link:hover {
  color: #e6c200;
  text-decoration: none;
}

/* Why Choose Section (Grid of Cards) */
.page-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-testimonials__card {
  background-color: #2b3e61; /* Slightly lighter blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-testimonials__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-testimonials__card-icon {
  margin-bottom: 20px;
}

.page-testimonials__icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-testimonials__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-testimonials__card-text {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.7;
}

.page-testimonials__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-testimonials__cta-bottom p {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 20px;
}

/* Success Stories Section */
.page-testimonials__story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-testimonials__story-card {
  background-color: #2b3e61;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-testimonials__story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-testimonials__story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-testimonials__story-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-testimonials__story-author {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 15px;
}

.page-testimonials__story-text {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.7;
}

/* Commitment Section */
.page-testimonials__commitment-text {
  font-size: 1.1em;
  color: #c0c0c0;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
}

.page-testimonials__commitment-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-testimonials__commitment-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-testimonials__commitment-text ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Final CTA Section */
.page-testimonials__cta-final {
  background: linear-gradient(45deg, #1A2B4C, #0f1a2b);
  padding: 100px 0;
  text-align: center;
}

.page-testimonials__cta-content {
  background-color: rgba(43, 62, 97, 0.8);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #FFD700;
}

.page-testimonials__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-testimonials__cta-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-testimonials__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-testimonials__faq {
  background-color: #0f1a2b;
  padding-bottom: 80px;
}

.page-testimonials__faq-item {
  background-color: #2b3e61;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-testimonials__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-testimonials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
}

.page-testimonials__faq-question.active::after {
  content: '-';
}

.page-testimonials__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-testimonials__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-testimonials__hero-title {
    font-size: 2.8em;
  }
  .page-testimonials__hero-description {
    font-size: 1.1em;
  }
  .page-testimonials__section-title {
    font-size: 2.2em;
  }
  .page-testimonials__cta-title {
    font-size: 2.5em;
  }
  .page-testimonials__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-testimonials__btn--outline {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-testimonials__hero-section {
    padding: 80px 0;
  }
  .page-testimonials__hero-title {
    font-size: 2.2em;
  }
  .page-testimonials__section {
    padding: 60px 0;
  }
  .page-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-testimonials__grid, .page-testimonials__story-grid {
    grid-template-columns: 1fr;
  }
  .page-testimonials__card, .page-testimonials__story-card {
    padding: 25px;
  }
  .page-testimonials__cta-final {
    padding: 80px 0;
  }
  .page-testimonials__cta-title {
    font-size: 2em;
  }
  .page-testimonials__cta-content {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .page-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-testimonials__hero-description {
    font-size: 1em;
  }
  .page-testimonials__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-testimonials__section-title {
    font-size: 1.6em;
    margin-bottom: 40px;
  }
  .page-testimonials__section-intro {
    margin-top: -30px;
    margin-bottom: 40px;
  }
  .page-testimonials__card-title {
    font-size: 1.5em;
  }
  .page-testimonials__story-title {
    font-size: 1.4em;
  }
  .page-testimonials__cta-title {
    font-size: 1.8em;
  }
  .page-testimonials__cta-description {
    font-size: 1em;
  }
  .page-testimonials__cta-buttons {
    gap: 10px;
  }
  .page-testimonials__faq-question {
    font-size: 1.2em;
  }
}