.page-contact {
  padding-top: var(--header-offset, 120px);
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.page-contact__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

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

.page-contact__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-contact__button--primary {
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
}

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

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

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

.page-contact__button--tertiary {
  background-color: #0047AB;
  color: #ffffff;
  border: 2px solid #0047AB;
}

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

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

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__social-section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__methods-section {
  background-color: #f8f8f8;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #0047AB;
  margin-bottom: 20px;
}

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

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

.page-contact__method-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.page-contact__method-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 5px;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-contact__method-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-contact__social-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0047AB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #FFD700;
  transform: translateY(-3px) scale(1.05);
}

.page-contact__social-icon img {
  
  
  object-fit: contain;
  filter: invert(1);
}

@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 40px 15px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__social-section {
    padding: 40px 0;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__method-icon {
    width: 200px;
  }
  .page-contact__social-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact__social-icon img {
    
    
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__hero-actions .page-contact__button {
    width: 90%;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__method-icon {
    width: 200px;
  }
  .page-contact__social-icon {
    width: 50px;
    height: 50px;
  }
  .page-contact__social-icon img {
    
    
  }
}