.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);
}

.page-contact__hero-section {
  background-color: #0A2342; /* Primary color background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__channels-section,
.page-contact__form-section,
.page-contact__business-section,
.page-contact__location-section,
.page-contact__why-contact-section,
.page-contact__faq-section,
.page-contact__cta-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

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

.page-contact__channels-container,
.page-contact__form-container,
.page-contact__business-container,
.page-contact__location-container,
.page-contact__why-contact-container,
.page-contact__faq-container,
.page-contact__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-contact__channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.page-contact__channel-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__channel-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

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

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.05em;
}

.page-contact__button--primary {
  background-color: #F2C94C; /* Auxiliary color */
  color: #0A2342; /* Primary color */
  border: 2px solid #F2C94C;
}

.page-contact__button--primary:hover {
  background-color: #e0b43c;
  border-color: #e0b43c;
}

.page-contact__button--secondary {
  background-color: #0A2342; /* Primary color */
  color: #F2C94C; /* Auxiliary color */
  border: 2px solid #0A2342;
}

.page-contact__button--secondary:hover {
  background-color: #1a3a60;
  border-color: #1a3a60;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f0f0f0;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #0A2342;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
}

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

.page-contact__button--submit {
  width: 100%;
  padding: 15px;
  background-color: #F2C94C;
  color: #0A2342;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__button--submit:hover {
  background-color: #e0b43c;
}

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

.page-contact__business-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
}

.page-contact__business-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

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

.page-contact__location-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-contact__address {
  font-size: 1.2em;
  color: #333333;
  text-align: center;
  line-height: 1.8;
}

.page-contact__location-map {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-contact__why-contact-section {
  background-color: #0A2342;
  color: #ffffff;
}

.page-contact__why-contact-section .page-contact__section-title {
  color: #F2C94C;
}

.page-contact__why-contact-section .page-contact__section-intro {
  color: #cccccc;
}

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

.page-contact__why-contact-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.page-contact__why-contact-heading {
  font-size: 1.8em;
  color: #F2C94C;
  margin-bottom: 15px;
}

.page-contact__why-contact-text {
  font-size: 1em;
  color: #eeeeee;
}

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

.page-contact__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

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

.page-contact__cta-section {
  background-color: #f2c94c; /* Auxiliary color background */
  color: #0A2342; /* Primary color for text */
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-section .page-contact__section-title {
  color: #0A2342;
}

.page-contact__cta-section .page-contact__section-intro {
  color: #333333;
}

.page-contact__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__cta-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

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

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 1em;
  }
  .page-contact__channel-grid,
  .page-contact__business-contact-grid,
  .page-contact__why-contact-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__contact-form {
    padding: 30px 20px;
  }
  .page-contact__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button--submit {
    font-size: 1.1em;
  }
  .page-contact__hero-image, .page-contact__location-map, .page-contact__cta-image, .page-contact__channel-icon {
    max-width: 100%;
    height: auto;
  }
  .page-contact__why-contact-item, .page-contact__channel-card, .page-contact__business-card {
    padding: 20px;
  }
  .page-contact__hero-section, .page-contact__channels-section, .page-contact__form-section, .page-contact__business-section, .page-contact__location-section, .page-contact__why-contact-section, .page-contact__faq-section, .page-contact__cta-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__button {
    width: 100%;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
  }
  .page-contact__hero-image, .page-contact__location-map, .page-contact__cta-image, .page-contact__channel-icon {
    max-width: 100%;
    height: auto;
  }
}