.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #f8f8f8; /* Light background for main content */
  color: #1A1A1A; /* Dark text for readability on light 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 {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px 40px; /* Adjusted padding */
  overflow: hidden;
  background-color: #1A1A1A; /* Dark background for hero section */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
  z-index: 0;
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

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

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

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-contact__button--submit {
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

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

.page-contact__button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #1A1A1A;
}

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

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-contact__section-intro--light {
  color: #e0e0e0;
}

.page-contact__channels-section, .page-contact__form-section, .page-contact__why-us-section, .page-contact__faq-preview-section, .page-contact__business-inquiry-section, .page-contact__location-section {
  padding: 60px 0;
}

.page-contact__channels-section {
  background-color: #FFFFFF;
}

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

.page-contact__channel-card {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.page-contact__channel-icon {
  width: 200px; /* Minimum size 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__channel-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1A1A1A;
}

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

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

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

.page-contact__form-section {
  background-color: #f0f0f0;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.page-contact__form-input, .page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
  background-color: #fefefe;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

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

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

.page-contact__why-us-section {
  background-color: #FFFFFF;
}

.page-contact__why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-contact__why-us-item {
  padding: 25px;
  border-radius: 12px;
  background-color: #fefefe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__why-us-icon {
  width: 250px; /* Minimum size 200px */
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
  border-radius: 8px;
}

.page-contact__why-us-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.page-contact__why-us-description {
  font-size: 0.95em;
  color: #555555;
}

.page-contact__faq-preview-section {
  background-color: #f0f0f0;
}

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

.page-contact__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-contact__call-to-action-section {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-contact__call-to-action-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-contact__business-inquiry-section {
  background-color: #FFFFFF;
}

.page-contact__business-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-contact__business-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-contact__location-section {
  background-color: #f0f0f0;
  padding-bottom: 80px;
}

.page-contact__location-image {
  width: 600px; /* Minimum size 200px */
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-contact__location-note {
  text-align: center;
  font-style: italic;
  color: #555555;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__location-image {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px 30px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 100%;
    max-width: 300px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
  }
  .page-contact__channel-grid, .page-contact__why-us-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__contact-form {
    padding: 25px;
  }
  .page-contact__form-input, .page-contact__form-textarea {
    width: calc(100% - 24px);
  }
  .page-contact__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Critical: Mobile content area images must be constrained */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__channel-icon, .page-contact__why-us-icon {
    width: 100%; /* Ensure images scale down */
    max-width: 250px; /* Or appropriate size, but not smaller than 200px if it's a content image */
  }
  .page-contact__location-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__contact-form {
    padding: 15px;
  }
}