.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(50,50,50,0.8));
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

.page-contact__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

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

.page-contact__button--login:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-contact__methods-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

.page-contact__methods-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

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

.page-contact__method-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, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-contact__method-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__method-name {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-contact__method-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-contact__faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

.page-contact__faq-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-contact__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.page-contact__faq-answer {
  color: #666666;
  margin-bottom: 15px;
}

.page-contact__faq-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
  color: #e0a53a;
  text-decoration: underline;
}

.page-contact__floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-contact__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__floating-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-contact__floating-button--register:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.page-contact__floating-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-contact__floating-button--login:hover {
  background-color: #e0a53a;
  transform: scale(1.05);
}

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

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

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

  .page-contact__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-contact__methods-title,
  .page-contact__faq-title {
    font-size: 1.8em;
  }

  .page-contact__methods-grid,
  .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__method-icon {
    width: 80px;
    height: 80px;
  }

  .page-contact__floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .page-contact__floating-button {
    width: 100px;
    height: 45px;
    font-size: 0.9em;
  }

  /* Ensure images in content area are responsive and not smaller than 200px display */
  .page-contact__methods-section img,
  .page-contact__faq-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }

  .page-contact__method-icon {
    min-width: 100px; /* Override general img rule for specific icon, but still > 80px */
    min-height: 100px;
  }
}

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

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

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

  .page-contact__methods-section,
  .page-contact__faq-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-contact__methods-title,
  .page-contact__faq-title {
    font-size: 1.6em;
  }
}

/* General image rules for content area to prevent small icons */
.page-contact img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Override for specific small icons if needed, but ensure they are still > 200px if they are content images */
.page-contact__method-icon {
  min-width: 100px; /* Allowing smaller for specific icons as long as they aren't 'content' images */
  min-height: 100px;
  object-fit: contain; /* Icons should contain, not cover */
}