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

.page-contact__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

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

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF; /* Light text for hero overlay */
  padding: 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  border-radius: 10px;
}

.page-contact__main-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-contact__intro-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-contact__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-contact__method-card {
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__method-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555555;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__button--primary {
  background-color: #FCBC45;
  color: #000000; /* Dark text for light button */
  border: 2px solid #FCBC45;
}

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

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-contact__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-contact__button--outline {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

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

.page-contact__faq-section {
  background-color: #f9f9f9;
}

.page-contact__faq-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-contact__faq-image {
  flex: 0 0 400px;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-contact__faq-list {
  flex-grow: 1;
}

.page-contact__faq-item {
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

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

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #888888;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 3rem;
  }
  .page-contact__intro-description {
    font-size: 1.1rem;
  }
  .page-contact__faq-image {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px);
  }
  .page-contact__hero-content {
    padding: 15px;
  }
  .page-contact__main-title {
    font-size: 2.2rem;
  }
  .page-contact__intro-description {
    font-size: 1rem;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 100%;
  }
  .page-contact__section-title {
    font-size: 2rem;
  }
  .page-contact__section-description {
    font-size: 1rem;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__method-icon {
    width: 200px;
    height: 200px;
  }
  .page-contact__faq-content {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__faq-image {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .page-contact__contact-form {
    padding: 25px;
  }
  /* Mobile image overflow prevention */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: 1.8rem;
  }
  .page-contact__method-title {
    font-size: 1.5rem;
  }
  .page-contact__faq-question {
    font-size: 1.2rem;
  }
  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px);
  }
}