/* style/contact.css */
.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-color: #1A237E; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107; /* Auxiliary color for emphasis */
  font-weight: bold;
}

.page-contact__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-contact__btn--primary {
  background-color: #FFC107; /* Auxiliary color */
  color: #1A237E; /* Main color for text */
}

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

.page-contact__btn--secondary {
  background-color: #1A237E; /* Main color */
  color: #FFC107; /* Auxiliary color for text */
  border: 2px solid #FFC107;
}

.page-contact__btn--secondary:hover {
  background-color: #0d124d;
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #1A237E; /* Main color */
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

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

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

.page-contact__contact-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-contact__contact-item:hover {
  transform: translateY(-5px);
}

.page-contact__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-contact__item-description {
  color: #666;
  margin-bottom: 20px;
}

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

.page-contact__link:hover {
  color: #1A237E; /* Main color on hover */
  text-decoration: underline;
}

.page-contact__social-links {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-contact__social-links li {
  margin-bottom: 8px;
}

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

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

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

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

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFC107; /* Auxiliary color */
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

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

.page-contact__cta-section {
  background-color: #1A237E; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFC107; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-contact__cta-buttons .page-contact__btn {
  margin: 0 10px;
}

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

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

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

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__cta-title {
    font-size: 2.2em;
  }

  .page-contact__cta-buttons .page-contact__btn {
    display: block;
    margin: 15px auto;
  }
}

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

  .page-contact__hero-subtitle {
    font-size: 1.1em;
  }

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

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

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

  .page-contact__contact-item {
    padding: 20px;
  }

  .page-contact__item-title {
    font-size: 1.5em;
  }

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

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