.page-contact {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: Arial, sans-serif;
}

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

.page-contact__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
  background-color: #7A0E0E;
  padding-top: 10px; /* Small top padding */
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
  margin-bottom: 20px;
}

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

.page-contact__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #FFF5E1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-contact__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #F2B544;
}

.page-contact__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__form-section, .page-contact__info-section, .page-contact__faq-section {
  padding: 60px 0;
}

.page-contact__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFF5E1;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #D32F2F;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #F2B544;
  border-radius: 5px;
  background-color: #B71C1C;
  color: #FFF5E1;
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 245, 225, 0.7);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #FFCC66;
  box-shadow: 0 0 0 3px rgba(255, 204, 102, 0.5);
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 2px solid #F2B544;
}

.page-contact__submit-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

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

.page-contact__info-card {
  background-color: #D32F2F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
  transition: transform 0.3s ease;
}

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

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFF5E1;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-text {
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-contact__info-link {
  display: inline-block;
  color: #FFCC66;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFCC66;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__info-link:hover {
  color: #F4D34D;
  border-color: #F4D34D;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #D32F2F;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #F2B544;
}

.page-contact__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  color: #FFF5E1;
  position: relative;
  margin: 0;
  background-color: #E53935; /* Slightly different background for question */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.5em;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

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

.page-contact__faq-answer a {
  color: #FFCC66;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-bottom: 30px;
  }

  .page-contact__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-contact__description {
    font-size: 1em;
  }

  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__section-description {
    font-size: 0.95em;
  }

  .page-contact__contact-form {
    padding: 25px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
  }

  .page-contact__submit-button {
    font-size: 1.1em;
    padding: 12px;
  }

  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__info-card {
    padding: 25px;
  }

  .page-contact__card-title {
    font-size: 1.5em;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 300px; /* More height for mobile if needed */
  }

  .page-contact__hero-image,
  .page-contact__form-section img,
  .page-contact__info-section img,
  .page-contact__faq-section img {
    max-width: 100%;
    height: auto;
  }
}