.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2E47; /* Dark blue for main text */
  background-color: #f0f2f5;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #3a5070 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f2f5;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A2E47;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-contact__methods {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-contact__method-item {
  background-color: #f9f9f9;
  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, box-shadow 0.3s ease;
}

.page-contact__method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-contact__method-title {
  font-size: 1.5em;
  color: #1A2E47;
  margin-bottom: 10px;
}

.page-contact__method-text {
  color: #555;
  margin-bottom: 20px;
}

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

.page-contact__link:hover {
  color: #b39700; /* Darker gold on hover */
  text-decoration: underline;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-contact__form-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #333;
}

.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: 25px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #1A2E47;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  background-color: #fefefe;
}

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

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

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__btn--primary:hover {
  background-color: #b39700; /* Darker gold */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__btn--secondary {
  background-color: #1A2E47; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700; /* Gold background */
  color: #1A2E47; /* Dark blue text */
  border-color: #1A2E47;
  transform: translateY(-2px);
}

.page-contact__btn--submit {
  background-color: #1A2E47;
  color: #FFD700;
  padding: 15px 30px;
  font-size: 1.2em;
  width: 100%;
  border-radius: 8px;
}

.page-contact__btn--submit:hover {
  background-color: #0d1e33;
  color: #FFD700;
}

.page-contact__cta-bottom {
  background-color: #1A2E47;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-contact__hero .page-contact__btn--primary {
    width: 100%;
    max-width: 300px;
  }
  .page-contact__cta-bottom .page-contact__btn {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}