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

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

.page-contact__section-title {
  color: #0A2239;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjusted height for visual impact */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 20px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-contact__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
}

.page-contact__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E6B325;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #E6B325;
  color: #0A2239;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #f0c84c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.page-contact__info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-contact__method-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-contact__method-icon {
  width: 150px; /* Increased size for content image */
  height: 150px; /* Increased size for content image */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #0A2239;
  padding: 15px;
}

.page-contact__method-title {
  font-size: 24px;
  color: #0A2239;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-contact__method-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0A2239;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: #1a3a5a;
  transform: translateY(-2px);
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.page-contact__form-group label {
  display: block;
  font-size: 16px;
  color: #0A2239;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-group input,
.page-contact__form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 16px;
  color: #333333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-group input::placeholder,
.page-contact__form-group textarea::placeholder {
  color: #aaaaaa;
}

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
  border-color: #E6B325;
  box-shadow: 0 0 8px rgba(230, 179, 37, 0.3);
  outline: none;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 18px;
  background-color: #E6B325;
  color: #0A2239;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
  background-color: #f0c84c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #0A2239;
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E6B325;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2239;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #fcfcfc;
  padding: 0 25px;
  color: #555555;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
}

/* CTA Banner Section */
.page-contact__cta-banner {
  background-color: #0A2239;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-contact__banner-title {
  font-size: 40px;
  color: #E6B325;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-contact__banner-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-contact__cta-button--large {
  padding: 18px 45px;
  font-size: 22px;
  margin: 0 15px 20px 15px; /* Added margin for spacing */
}

.page-contact__cta-button--secondary {
  background-color: #333333;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 18px;
  margin: 0 15px 20px 15px; /* Added margin for spacing */
}

.page-contact__cta-button--secondary:hover {
  background-color: #555555;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 40px;
  }
  .page-contact__hero-description {
    font-size: 18px;
  }
  .page-contact__section-title {
    font-size: 30px;
  }
  .page-contact__banner-title {
    font-size: 34px;
  }
  .page-contact__contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    height: 400px;
  }
  .page-contact__hero-title {
    font-size: 32px;
  }
  .page-contact__hero-description {
    font-size: 16px;
  }
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-contact__section-description {
    font-size: 16px;
  }
  .page-contact__form-section, .page-contact__info-section, .page-contact__faq-section, .page-contact__cta-banner {
    padding: 40px 0;
  }
  .page-contact__contact-form {
    padding: 25px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .page-contact__method-icon {
    width: 120px;
    height: 120px;
  }
  .page-contact__banner-title {
    font-size: 28px;
  }
  .page-contact__cta-button--large,
  .page-contact__cta-button--secondary {
    font-size: 16px;
    padding: 12px 25px;
    margin: 0 8px 15px 8px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    height: 350px;
  }
  .page-contact__hero-title {
    font-size: 28px;
  }
  .page-contact__hero-description {
    font-size: 14px;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__hero-content {
    padding: 0 10px;
  }
  .page-contact__contact-methods {
    gap: 20px;
  }
  .page-contact__faq-list {
    padding: 0 10px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-contact__banner-title {
    font-size: 24px;
  }
  .page-contact__cta-button--large,
  .page-contact__cta-button--secondary {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}