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

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Deeper blue to lighter blue */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.page-contact__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.page-contact__hero-image:hover {
  transform: scale(1.03);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-contact__methods {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

.page-contact__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #1A237E;
}

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

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

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
  background-color: transparent;
  color: #1A237E;
  border: 2px solid #1A237E;
}

.page-contact__btn--secondary:hover {
  background-color: #1A237E;
  color: #fff;
  transform: translateY(-2px);
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #fff;
}

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

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

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1A237E;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__btn--submit {
  background-color: #1A237E;
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  width: auto;
  display: block;
  margin: 30px auto 0;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-contact__btn--submit:hover {
  background-color: #3F51B5;
  transform: translateY(-2px);
}

.page-contact__faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-contact__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
  display: none; /* Hidden by default */
}

.page-contact__faq-answer.active {
  display: block;
}

.page-contact__faq-answer a {
  color: #1A237E;
  text-decoration: underline;
}

.page-contact__faq-answer a:hover {
  color: #FFD700;
}

.page-contact__cta {
  background: linear-gradient(90deg, #1A237E 0%, #3F51B5 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-image {
  max-width: 150px;
  margin-bottom: 30px;
  border-radius: 50%;
  border: 5px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.page-contact__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__cta-description {
    font-size: 1em;
  }

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

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

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

  .page-contact__form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__section-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-contact__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }

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