.page-contact {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-contact__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Constrain hero content width */
  margin: 0 auto;
}

.page-contact__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.6;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  color: #FFFFFF;
}

.page-contact__hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 30px;
  color: #F0F0F0;
  line-height: 1.6;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-contact__section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000;
}

.page-contact__section-intro {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555555;
  line-height: 1.6;
}

.page-contact__info-container,
.page-contact__form-container,
.page-contact__faq-container,
.page-contact__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-contact__method-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-contact__method-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-contact__method-description {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.05rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

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

.page-contact__form-textarea {
  resize: vertical;
  min-height: 150px;
}

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register button color */
  padding: 18px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  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(-3px);
}

.page-contact__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-contact__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

.page-contact__faq-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */\  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__cta-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-contact__cta-image {
  width: 800px; /* Example display width */
  height: 450px; /* Example display height */
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  max-width: 100%; /* Ensure responsiveness */
}

.page-contact__cta-content {
  text-align: center;
  max-width: 800px;
}

.page-contact__cta-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-contact__cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #F0F0F0;
  line-height: 1.6;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text for bright button */
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button:hover {
  background-color: #F0F0F0;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3rem;
  }
  .page-contact__hero-description {
    font-size: 1.1rem;
  }
  .page-contact__section-title {
    font-size: 2.4rem;
  }
  .page-contact__method-icon {
    width: 200px;
    height: 180px;
  }
  .page-contact__cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 400px;
  }
  .page-contact__hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .page-contact__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 60px 15px;
  }
  .page-contact__section-title {
    font-size: 2rem;
  }
  .page-contact__section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 30px 20px;
  }
  .page-contact__method-icon {
    width: 200px; /* Minimum 200px */
    height: 180px; /* Minimum 200px */
  }
  .page-contact__method-title {
    font-size: 1.5rem;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 12px;
  }
  .page-contact__form-submit-button {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  .page-contact__faq-question {
    font-size: 1.2rem;
  }
  .page-contact__faq-answer {
    font-size: 0.9rem;
  }
  .page-contact__cta-title {
    font-size: 2rem;
  }
  .page-contact__cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-contact__cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-contact__hero-image,
  .page-contact__method-icon,
  .page-contact__cta-image,
  .page-contact__contact-methods img,
  .page-contact__form-section img,
  .page-contact__faq-section img,
  .page-contact__cta-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8rem;
  }
  .page-contact__section-title {
    font-size: 1.8rem;
  }
  .page-contact__method-title {
    font-size: 1.3rem;
  }
  .page-contact__cta-title {
    font-size: 1.8rem;
  }
}