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

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

.page-contact__hero-section {
  background-color: #CC0000; /* Main brand color for hero background */
  color: #FFD700; /* Auxiliary brand color for text on hero */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFD700;
}

.page-contact__hero-image {
  margin-bottom: 40px;
}

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

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color for button */
  color: #CC0000; /* Main brand color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__hero-button:hover {
  background-color: #e6c200;
  color: #a30000;
}

.page-contact__methods-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-contact__methods-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #CC0000;
}

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

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

.page-contact__method-card:hover {
  transform: translateY(-5px);
}

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

.page-contact__method-icon img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

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

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

.page-contact__method-button {
  display: inline-block;
  background-color: #CC0000; /* Main brand color for buttons */
  color: #FFD700; /* Auxiliary brand color for button text */
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: #a30000;
  color: #FFD700;
}

.page-contact__feedback-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #eee;
}

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

.page-contact__feedback-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-contact__feedback-button {
  display: inline-block;
  background-color: #FFD700;
  color: #CC0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__feedback-button:hover {
  background-color: #e6c200;
  color: #a30000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

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

  .page-contact__methods-title,
  .page-contact__feedback-title {
    font-size: 1.8em;
  }

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

  .page-contact__hero-button,
  .page-contact__feedback-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Ensure images are responsive and not smaller than 200px */
  .page-contact__hero-image img,
  .page-contact__method-icon img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for mobile */
    min-height: 200px;
  }
}