.page-contact {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

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

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

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

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

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

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

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

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

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

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

.page-contact__channel-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  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(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__channel-icon {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__channel-email-address {
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

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

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

.page-contact__form-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__form-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  text-align: center;
}

.page-contact__contact-form {
  display: grid;
  gap: 25px;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
}

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FCBC45;
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 188, 69, 0.2);
}

.page-contact__form-submit-button {
  padding: 15px 30px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-contact__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-description,
  .page-contact__channels-intro,
  .page-contact__form-description,
  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__channels-title,
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 2em;
  }

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

  .page-contact__hero-button,
  .page-contact__channel-button,
  .page-contact__form-submit-button,
  .page-contact__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-contact__hero-section {
    padding-bottom: 40px;
  }

  .page-contact__hero-container {
    padding: 60px 20px;
  }

  .page-contact__channels-section,
  .page-contact__form-section,
  .page-contact__cta-section {
    padding: 60px 20px;
  }

  .page-contact__form-container {
    padding: 30px;
  }

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

  .page-contact__cta-button {
    width: 100%;
    max-width: 250px;
  }

  /* Ensure content images are responsive */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-contact__channels-title,
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}