.page-contact {
  color: #333333;
  background-color: #FFFFFF;
}

.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  justify-content: center;
  color: #FFFFFF;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.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;
  white-space: nowrap;
}

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

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

.page-contact__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-contact__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-contact__channels-section,
.page-contact__form-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}

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

.page-contact__channels-intro,
.page-contact__form-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.5;
}

.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: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
}

.page-contact__channel-icon {
  width: 250px; /* Minimum 200px */
  height: 167px; /* Maintain aspect ratio for 600x400 */
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 5px;
}

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

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

.page-contact__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
}

.page-contact__button--small:hover {
  background-color: #333333;
}

.page-contact__contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

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

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

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

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

.page-contact__button--submit {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  cursor: pointer;
  width: auto;
  padding: 12px 30px;
  font-size: 1.1em;
}

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

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

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

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

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

  .page-contact__hero-actions {
    flex-direction: column;
  }

  .page-contact__button {
    width: 100%;
  }

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

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

  .page-contact__channel-icon {
    width: 100%;
    max-width: 300px; /* Ensure images don't get too small or too large */
    height: auto;
  }

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__hero-section img,
  .page-contact__channels-section img,
  .page-contact__form-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    padding: 40px 15px;
  }

  .page-contact__hero-title {
    font-size: 2em;
  }

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

  .page-contact__channels-section,
  .page-contact__form-section {
    margin: 40px auto;
    padding: 20px 15px;
  }

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

  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-contact__channel-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}