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

.page-contact__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight title with login button color */
}

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

.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.3s ease;
  margin: 0 10px;
}

.page-contact__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-contact__hero-button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-3px);
}

.page-contact__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-contact__hero-button--login:hover {
  background-color: #E0A030;
  transform: translateY(-3px);
}

.page-contact__channels-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.page-contact__channels-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__channels-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
}

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

.page-contact__channel-card {
  background-color: #F8F8F8;
  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;
}

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

.page-contact__channel-icon {
  width: 100%; /* Ensure images are responsive within card */
  max-width: 400px; /* Max width for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__channel-name {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-contact__channel-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

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

.page-contact__partnership-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-contact__partnership-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__partnership-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-contact__partnership-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-contact__partnership-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__partnership-button:hover {
  background-color: #E0A030;
  transform: translateY(-3px);
}

.page-contact__location-section {
  background-color: #F0F0F0;
  padding: 60px 20px;
  text-align: center;
}

.page-contact__location-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-contact__location-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
}

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

.page-contact__location-image {
  width: 100%; /* Ensure images are responsive */
  max-width: 800px; /* Max width for content images */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description {
    font-size: 0.95em;
  }

  .page-contact__hero-button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 5px 15px;
  }

  .page-contact__channels-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__channels-title,
  .page-contact__partnership-title,
  .page-contact__location-title {
    font-size: 1.8em;
  }

  .page-contact__partnership-description,
  .page-contact__location-description {
    font-size: 1em;
  }

  .page-contact__partnership-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  /* Ensure all images under .page-contact are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}