.page-contact {
  color: #333333; /* Dark text for light body background */
}

.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f9f9f9;
  text-align: center;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  color: #8B0000; /* Dark Red from brand colors */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold from brand colors */
  color: #8B0000; /* Dark Red text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain image width */
  margin-top: 40px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-contact__methods-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-contact__methods-title {
  font-size: 2.2em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 40px;
}

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

.page-contact__method-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-contact__method-icon {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px; /* Ensure images are not small icons */
}

.page-contact__method-name {
  font-size: 1.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 10px;
}

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

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

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

.page-contact__form-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__form-title {
  font-size: 2.2em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__form-description {
  font-size: 1.05em;
  color: #666666;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.6;
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
  font-size: 1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1em;
  color: #333333;
  background-color: #fefefe;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Gold focus */
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #a00000; /* Slightly lighter red */
  transform: translateY(-2px);
}

.page-contact__promo-section {
  background-color: #FFD700; /* Gold background for promo */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-contact__promo-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red text */
  margin-bottom: 15px;
}

.page-contact__promo-description {
  font-size: 1.1em;
  color: #6a0000; /* Darker red for description */
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-contact__promo-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__promo-button {
  display: inline-block;
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__promo-button:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

.page-contact__promo-button--secondary {
  background-color: #ffffff;
  color: #8B0000; /* Dark Red */
  border: 2px solid #8B0000;
}

.page-contact__promo-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #a00000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.4em;
  }
  .page-contact__methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding-bottom: 40px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-contact__methods-section {
    margin: 40px auto;
  }
  .page-contact__methods-title {
    font-size: 1.8em;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
  }
  .page-contact__method-name {
    font-size: 1.3em;
  }
  .page-contact__method-description {
    font-size: 0.9em;
  }
  .page-contact__method-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__form-section {
    margin: 40px auto;
    padding: 30px;
  }
  .page-contact__form-title {
    font-size: 1.8em;
  }
  .page-contact__form-description {
    font-size: 1em;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  .page-contact__form-submit-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-contact__promo-section {
    padding: 40px 20px;
    margin-top: 40px;
  }
  .page-contact__promo-title {
    font-size: 2em;
  }
  .page-contact__promo-description {
    font-size: 1em;
  }
  .page-contact__promo-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__promo-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }
  /* Ensure content area images are responsive and not too small */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__method-icon {
    max-width: 200px; /* Ensure mobile images are not smaller than 200px if they are content images */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form-section {
    padding: 20px;
  }
  .page-contact__promo-title {
    font-size: 1.8em;
  }
  .page-contact__promo-button {
    width: 90%;
  }
}