.page-contact {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

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

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

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

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

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

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

.page-contact__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-contact__method-card {
  background-color: #f8f8f8;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-contact__method-icon {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-contact__button--card {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-contact__button--card:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.page-contact__partnership-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-contact__partnership-content {
  max-width: 800px;
}

.page-contact__partnership-section .page-contact__section-title {
  color: #FFFFFF;
}

.page-contact__partnership-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-contact__partnership-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-contact__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f0f0f0;
  margin-top: 60px;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__info-section {
  padding: 30px 20px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 0;
}

.page-contact__copyright {
  font-size: 0.9em;
  color: #BBBBBB;
}

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

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 80%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-contact__hero-image {
    margin-top: 30px;
  }
  .page-contact__methods-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 180px;
  }
  .page-contact__partnership-section {
    flex-direction: column;
    padding: 30px 15px;
    margin: 40px auto;
  }
  .page-contact__partnership-image {
    max-width: 100%;
  }
  .page-contact__cta-section {
    padding: 60px 15px;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }

  /* Ensure images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not be smaller than 200px, but responsive */
  .page-contact__method-icon {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 133px; /* Proportionate to 200px width for 600x400 source */
    width: 100%; /* Allow scaling down from original HTML width */
  }
  .page-contact__partnership-image {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 150px; /* Proportionate to 200px width for 800x600 source */
    width: 100%; /* Allow scaling down from original HTML width */
  }
  .page-contact__hero-image {
    min-width: 200px; /* Enforce minimum size for hero image */
    min-height: 112px; /* Proportionate to 200px width for 1920x1080 source */
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__button {
    width: 90%;
  }
}