.page-contact {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  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;
  overflow: hidden;
  text-align: center;
  background-color: #1A1A2E;
  padding: 80px 0;
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(26, 26, 46, 0.7); /* Slightly darker overlay for text readability */
  border-radius: 10px;
}

.page-contact__main-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-contact__btn {
  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;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
}

.page-contact__btn--secondary {
  background-color: #1A1A2E;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 20px;
}

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

.page-contact__channels-section,
.page-contact__inquiries-section,
.page-contact__commitment-section,
.page-contact__feedback-section,
.page-contact__cta-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

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

.page-contact__channel-card {
  background-color: #2a2a3e;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-contact__channel-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

.page-contact__card-text {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__btn--card {
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 12px 25px;
  font-size: 1em;
}

.page-contact__btn--card:hover {
  background-color: #e6c200;
}

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

.page-contact__inquiry-item {
  background-color: #2a2a3e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__inquiry-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-contact__inquiry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__inquiry-list li {
  color: #cccccc;
  font-size: 1em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact__inquiry-list li:last-child {
  border-bottom: none;
}

.page-contact__commitment-section {
  background-color: #1A1A2E;
}

.page-contact__commitment-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-contact__commitment-image {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 600px; /* Ensure images are not too small */
  min-height: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__commitment-text {
  flex: 1 1 45%;
}

.page-contact__commitment-subtitle {
  font-size: 2em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-contact__commitment-text p {
  color: #cccccc;
  margin-bottom: 20px;
}

.page-contact__feedback-section {
  text-align: center;
}

.page-contact__cta-section {
  text-align: center;
  background-color: #2a2a3e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 0;
  }

  .page-contact__main-title {
    font-size: 2.2em;
  }

  .page-contact__intro-description {
    font-size: 1em;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-contact__section-title {
    font-size: 2em;
    margin-top: 40px;
  }

  .page-contact__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-contact__channel-grid,
  .page-contact__inquiry-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__commitment-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-contact__commitment-image {
    width: 100%;
    max-width: 100%;
  }
  
  .page-contact__channel-icon, .page-contact__commitment-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px;
  }
}

/* Ensure all content area images are at least 200px wide */
.page-contact img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensure images fill their space without distortion */
}

/* Specific adjustment for images within cards to ensure they are large enough */
.page-contact__channel-card img, .page-contact__commitment-content img {
    width: 100%; /* Occupy full width of their container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}