/* Additional styles specific to the price matching page */
.price-matching-hero {
  height: 15vh;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.price-matching-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  opacity: 0.4;
}

.price-match-content {
  padding: 80px 0;
}

.process-container {
  margin-top: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.step-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  opacity: 0.5;
  position: absolute;
  top: 20px;
  right: 30px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.testimonials {
  background-color: var(--color-off-white);
  padding: 80px 0;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before {
  content: "\201C";
  /* Unicode for opening double quote */
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--color-secondary);
  opacity: 0.5;
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-details {
  margin-left: 15px;
}

.author-name {
  font-weight: 600;
  color: var(--color-accent);
}

.author-location {
  font-size: 14px;
  color: var(--color-text-light);
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  padding: 80px 0;
}

.faq-items {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-accent);
}

.faq-answer {
  padding: 0 20px;
  color: var(--color-text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cta-section {
  padding: 60px 0;
  background-color: var(--color-secondary);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-accent);
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 30px;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}