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

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

.page-contact__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  filter: blur(50px);
}

.page-contact__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

.page-contact__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
}

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

.page-contact__cta-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-btn:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

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

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

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

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

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-contact__card-text {
  color: #555;
  margin-bottom: 15px;
}

.page-contact__card-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__card-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

.page-contact__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

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

.page-contact__submit-btn {
  display: block;
  width: 100%;
  background-color: #007bff;
  color: #ffffff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

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

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

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

.page-contact__faq-question {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__faq-answer {
  color: #555;
}

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

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

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

.page-contact__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__map-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-contact__map-placeholder {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

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

.page-contact__address {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2em;
  }

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

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

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

  .page-contact__form {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }

  .page-contact__title {
    font-size: 1.8em;
  }

  .page-contact__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-contact__info-icon {
    width: 50px;
    height: 50px;
  }

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

  .page-contact__submit-btn {
    font-size: 1em;
    padding: 12px;
  }

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