.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 50px;
}

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

/* Hero Section */
.page-contact__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  padding-bottom: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Image block above text block */
  align-items: center;
  gap: 30px;
  z-index: 1;
}

.page-contact__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__hero-text-content {
  max-width: 800px;
  color: #000000; /* Dark text on light gradient background for contrast */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-contact__main-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: 700;
  margin-bottom: 15px;
  color: #333333; /* Ensuring contrast */
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333; /* Ensuring contrast */
}

.page-contact__hero-cta-buttons,
.page-contact__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text on golden button for contrast */
  border: 2px solid #FFD36B;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Auxiliary color for text */
  border: 2px solid #F2C14E; /* Main color for border */
}

.page-contact__btn-secondary:hover {
  background: #222222;
  color: #F2C14E;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-contact__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #FFF6D6;
}

/* Methods Section */
.page-contact__methods-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-contact__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color for card titles */
  margin-bottom: 15px;
}

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

.page-contact__email-address {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E;
}

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

.page-contact__social-icon-link {
  display: inline-flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A2A12; /* Border color for background */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  background-color: #F2C14E;
  transform: scale(1.1);
}

.page-contact__social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.page-contact__social-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 20px auto 0;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #111111; /* Card BG */
}

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.page-contact__faq-items-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-contact__faq-item {
  background: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: #1a1a1a;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  text-align: left;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 20px;
}

.page-contact__faq-answer p {
  margin-bottom: 0;
}

.page-contact__faq-image-container {
  text-align: center;
  margin-top: 30px;
}

.page-contact__faq-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-contact__view-all-faq-btn {
  margin-top: 20px;
}

/* Why Contact Section */
.page-contact__why-contact-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-contact__why-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
  color: #FFF6D6;
}

.page-contact__list-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
}

.page-contact__list-item strong {
  color: #FFD36B;
}

.page-contact__why-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 50px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: block;
  object-fit: cover;
}

/* CTA Section */
.page-contact__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #333333; /* Dark text on light gradient */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-contact__cta-section .page-contact__section-title {
  color: #333333;
}

.page-contact__cta-section .page-contact__section-description {
  color: #333333;
}

.page-contact__cta-section .page-contact__btn-primary {
  color: #0A0A0A; /* Dark text on golden button */
}

.page-contact__cta-section .page-contact__btn-secondary {
  background: #0A0A0A; /* Dark background */
  color: #F2C14E; /* Golden text */
  border-color: #F2C14E;
}

.page-contact__cta-section .page-contact__btn-secondary:hover {
  background: #222222;
  color: #F2C14E;
}

/* Links within text */
.page-contact p a,
.page-contact li a {
  color: #FFD36B; /* Auxiliary color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-contact p a:hover,
.page-contact li a:hover {
  color: #F2C14E; /* Main color on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__card-text,
  .page-contact__email-address,
  .page-contact__faq-question,
  .page-contact__list-item {
    font-size: 1em;
  }
  .page-contact__hero-cta-buttons, .page-contact__cta-buttons {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-contact__container {
    padding: 0 15px;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }
  .page-contact__hero-content-wrapper {
    gap: 20px;
  }
  .page-contact__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__why-contact-section,
  .page-contact__cta-section {
    padding: 50px 0;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__hero-cta-buttons,
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-contact__card,
  .page-contact__faq-item,
  .page-contact__list-item {
    padding: 20px;
  }
  .page-contact__social-image,
  .page-contact__faq-image,
  .page-contact__why-image,
  .page-contact__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-contact__faq-image-container {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 0 20px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px 20px 20px;
  }
  .page-contact__section-description {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-contact__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__hero-section {
    padding-top: var(--header-offset, 100px) !important;
  }
}