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

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

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

.page-contact__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-contact__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-contact__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
  background-color: #007BFF;
  color: #FFFFFF;
  border: 2px solid #007BFF;
}

.page-contact__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-contact__info-section {
  background-color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

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

.page-contact__info-block {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__info-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-contact__info-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

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

.page-contact__link:hover {
  color: #FFD700;
}

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

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

.page-contact__social-link:hover {
  color: #FFD700;
}

.page-contact__form-section {
  background-color: #f4f7fa;
  padding: 60px 0;
  text-align: center;
}

.page-contact__form-title {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  font-size: 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: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__cta-section {
  background: linear-gradient(45deg, #0056b3, #007BFF);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__info-block {
    padding: 25px;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__form-title {
    font-size: 1.8em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}