.page-contact {
  color: #333333; /* Dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Burgundy red for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-contact__hero-description {
  font-size: 1.15em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-contact__methods-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

.page-contact__methods-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__methods-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-contact__method-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended for card images */
  max-height: 300px; /* Recommended for card images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-contact__method-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__method-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__email-link, .page-contact__phone-link, .page-contact__text-link {
  color: #8B0000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-contact__email-link:hover, .page-contact__phone-link:hover, .page-contact__text-link:hover {
  color: #FFD700;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #f4f4f4;
}

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

.page-contact__faq-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-contact__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-contact__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

.page-contact__feedback-section {
  padding: 80px 0;
  background-color: #8B0000;
  text-align: center;
  color: #ffffff;
}

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

.page-contact__feedback-description {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-contact__trust-section {
  padding: 60px 0 80px 0;
  background-color: #fcfcfc;
}

.page-contact__trust-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__trust-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-contact__trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.page-contact__feature-icon {
  width: 100%;
  height: auto;
  max-width: 300px; /* Recommended for card images */
  max-height: 200px; /* Recommended for card images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-contact__feature-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-contact__trust-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Button Styles */
.page-contact__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

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

.page-contact__button--secondary {
  background-color: #8B0000;
  color: #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-contact__button--small {
  padding: 8px 20px;
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__methods-title, .page-contact__faq-title, .page-contact__trust-title {
    font-size: 2.2em;
  }
  .page-contact__feedback-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  }
  .page-contact__hero-section {
    padding: 60px 0;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__methods-section, .page-contact__faq-section, .page-contact__feedback-section, .page-contact__trust-section {
    padding: 40px 0;
  }
  .page-contact__methods-title, .page-contact__faq-title, .page-contact__trust-title {
    font-size: 2em;
  }
  .page-contact__feedback-title {
    font-size: 2em;
  }
  .page-contact__method-grid, .page-contact__trust-features {
    grid-template-columns: 1fr;
  }
  .page-contact__button {
    width: 100%;
    max-width: 300px;
  }
  .page-contact__trust-cta {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area image responsiveness */
  .page-contact__hero-image, .page-contact__method-icon, .page-contact__feature-icon {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Still enforce min-width */
    min-height: 200px; /* Still enforce min-height */
  }
  .page-contact__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__methods-title, .page-contact__faq-title, .page-contact__trust-title {
    font-size: 1.8em;
  }
  .page-contact__feedback-title {
    font-size: 1.8em;
  }
  .page-contact__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-contact__method-heading, .page-contact__feature-heading, .page-contact__faq-question {
    font-size: 1.5em;
  }
}