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

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

.page-contact__hero-section {
  background-color: #0F1A2B; /* Dark primary color */
  color: #ffffff;
  padding: 80px 20px;
  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: 900px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

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

.page-contact__hero-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, transform 0.2s ease;
  min-width: 180px;
  text-align: center;
}

.page-contact__hero-button--primary {
  background-color: #FFD700; /* Gold accent */
  color: #0F1A2B;
}

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

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

.page-contact__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #0F1A2B;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-contact__info-section, .page-contact__channels-section, .page-contact__issues-section, .page-contact__tips-section, .page-contact__commitment-section, .page-contact__feedback-section, .page-contact__why-choose-section, .page-contact__cta-section {
  padding: 60px 0;
}

.page-contact__info-section {
  background-color: #f9f9f9;
}

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

.page-contact__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.page-contact__channel-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-contact__channel-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0F1A2B;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to bottom */
}

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

.page-contact__email-link, .page-contact__social-link {
  color: #0F1A2B;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-contact__social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-contact__issues-section {
  background-color: #f9f9f9;
}

.page-contact__issues-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__issue-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 25px;
  transition: transform 0.3s ease;
}

.page-contact__issue-item:hover {
  transform: translateY(-5px);
}

.page-contact__issue-heading {
  font-size: 1.5em;
  color: #0F1A2B;
  margin-bottom: 10px;
}

.page-contact__issue-description {
  color: #666666;
  font-size: 0.95em;
}

.page-contact__tips-section {
  background-color: #eef2f5;
}

.page-contact__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__tip-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  font-size: 1.05em;
  color: #333333;
}

.page-contact__tip-item strong {
  color: #0F1A2B;
}

.page-contact__commitment-section {
  background-color: #0F1A2B;
  color: #ffffff;
  text-align: center;
}

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

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

.page-contact__commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-contact__feedback-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-contact__feedback-button {
  display: inline-block;
  background-color: #0F1A2B;
  color: #FFD700;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
}

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

.page-contact__why-choose-section {
  background-color: #eef2f5;
}

.page-contact__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-contact__why-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-contact__why-heading {
  font-size: 1.6em;
  color: #0F1A2B;
  margin-bottom: 10px;
}

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

.page-contact__why-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-contact__cta-section {
  background-color: #FFD700;
  color: #0F1A2B;
  text-align: center;
  padding: 80px 20px;
}

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

.page-contact__cta-section .page-contact__section-title::after {
  background-color: #0F1A2B;
}

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

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

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
}

.page-contact__cta-button--primary {
  background-color: #0F1A2B;
  color: #FFD700;
}

.page-contact__cta-button--primary:hover {
  background-color: #2a3e59;
  transform: translateY(-2px);
}

.page-contact__cta-button--secondary {
  background-color: transparent;
  color: #0F1A2B;
  border: 2px solid #0F1A2B;
}

.page-contact__cta-button--secondary:hover {
  background-color: rgba(15, 26, 43, 0.1);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 80px); /* Adjust padding for smaller header on mobile */
  }
  .page-contact__hero-section {
    padding: 60px 15px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__hero-actions, .page-contact__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__hero-button, .page-contact__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-contact__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-contact__cards-grid, .page-contact__channels-grid, .page-contact__issues-list, .page-contact__why-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__card, .page-contact__channel-item, .page-contact__issue-item, .page-contact__why-item {
    padding: 25px;
  }
  .page-contact__channel-icon {
    width: 80px;
    height: 80px;
  }
  .page-contact__commitment-image, .page-contact__why-image {
    max-width: 100%;
    height: auto; /* Ensures images are responsive */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  /* Enforce responsive images within content sections */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__channel-title, .page-contact__card-title, .page-contact__issue-heading, .page-contact__why-heading {
    font-size: 1.4em;
  }
  .page-contact__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}