.page-contact {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
}

.page-contact__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-contact__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__main-title {
  color: #8B0000;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  font-size: clamp(1.75rem, 5vw, 2rem); /* Constrained font size */
}

.page-contact__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-contact__button--secondary {
  background-color: #8B0000;
  color: #FFFFFF;
  border: 2px solid #8B0000;
}

.page-contact__button--secondary:hover {
  background-color: #6a0000;
  border-color: #6a0000;
}

.page-contact__info-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.page-contact__info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__info-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__card-title {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-contact__faq-section {
  padding: 50px 20px;
  background-color: #f8f8f8;
}

.page-contact__faq-title {
  text-align: center;
  color: #8B0000;
  font-size: 2em;
  margin-bottom: 40px;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-contact__faq-question {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  color: #555555;
  font-size: 1em;
  line-height: 1.6;
  display: none;
  margin-top: 15px;
}

.page-contact__faq-answer.active {
  display: block;
}

.page-contact__faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #eee;
  border-radius: 8px;
}

.page-contact__faq-cta-text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
}

.page-contact__cta-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-contact__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__cta-title {
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-contact__main-title {
    font-size: clamp(1.5rem, 7vw, 1.8rem);
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__button {
    width: 100%;
    margin: 10px 0;
  }

  .page-contact__info-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 30px 15px;
  }

  .page-contact__info-container {
    grid-template-columns: 1fr;
  }

  .page-contact__card-title {
    font-size: 1.3em;
  }

  .page-contact__faq-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
  }

  .page-contact__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile content area image constraint */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}