.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  background-color: #CC0000; /* Primary brand color */
  padding-top: var(--header-offset, 120px); /* Ensure header spacing */
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle overlay to allow text readability */
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-contact__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for buttons */
  color: #CC0000; /* Primary color for text on auxiliary background */
  padding: 15px 30px;
  border-radius: 50px;
  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-contact__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__section {
  padding: 60px 0;
}

.page-contact__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-contact__dark-bg {
  background-color: #CC0000;
  color: #ffffff;
}

.page-contact__dark-bg .page-contact__section-title {
  color: #FFD700;
}

.page-contact__dark-bg .page-contact__section-intro {
  color: #f0f0f0;
}

.page-contact__dark-bg .page-contact__highlight-title {
  color: #FFD700;
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #CC0000; /* Primary color for titles */
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-contact__features-grid,
.page-contact__methods-grid,
.page-contact__highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__feature-item,
.page-contact__method-card,
.page-contact__highlight-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__feature-item:hover,
.page-contact__method-card:hover,
.page-contact__highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-contact__feature-title,
.page-contact__method-title,
.page-contact__highlight-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-contact__method-icon {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #CC0000; /* Primary color for text */
  border: 2px solid #CC0000;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-contact__btn-secondary:hover {
  background-color: #CC0000;
  color: #ffffff;
}

.page-contact__text-link {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__text-link:hover {
  text-decoration: underline;
}

.page-contact__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-contact__guide-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-contact__guide-title {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-contact__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-contact__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: #f0f0f0;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #CC0000;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
  content: '−';
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-contact__faq-answer p {
  margin-bottom: 15px;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 3em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-contact__hero-section {
    padding: 60px 15px;
  }
  .page-contact__main-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__section {
    padding: 40px 0;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__features-grid,
  .page-contact__methods-grid,
  .page-contact__highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__feature-item,
  .page-contact__method-card,
  .page-contact__highlight-item {
    padding: 25px;
  }
  .page-contact__feature-title,
  .page-contact__method-title,
  .page-contact__highlight-title {
    font-size: 1.5em;
  }
  .page-contact__guide-item {
    padding: 20px;
  }
  .page-contact__guide-title {
    font-size: 1.3em;
  }
  .page-contact__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image and video responsiveness */
  .page-contact img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact video,
  .page-contact__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__hero-section,
  .page-contact__video-section,
  .page-contact__video-container,
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Adjust for mobile header */
  }
  /* Button responsiveness */
  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__btn-primary {
    font-size: 0.9em;
  }
  .page-contact__feature-title,
  .page-contact__method-title,
  .page-contact__highlight-title {
    font-size: 1.3em;
  }
  .page-contact__guide-title {
    font-size: 1.1em;
  }
  .page-contact__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-contact__faq-answer {
    padding: 8px 15px;
  }
}