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

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

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

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_pattern,geometric,blue_gold]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-contact__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
}

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

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

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

.page-contact__section {
  padding: 60px 0;
}

.page-contact__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  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-intro {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-contact__channels {
  padding-top: 80px;
}

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

.page-contact__channel-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__channel-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #0A246A; /* Fallback for SVG icons */
}

.page-contact__channel-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-contact__channel-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-contact__channel-info {
  font-weight: bold;
  color: #FFD700;
  font-size: 1.1em;
  margin-top: 15px;
}

.page-contact__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #0A246A;
  color: #FFD700;
}

.page-contact__btn--small:hover {
  background-color: #071b4a;
  color: #FFD700;
}

.page-contact__form-section {
  background-color: #f8f9fa;
}

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

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

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0A246A;
  font-size: 1.05em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  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.2);
  outline: none;
}

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

.page-contact__btn--submit {
  width: 100%;
  padding: 15px;
  background-color: #0A246A;
  color: #FFD700;
  font-size: 1.1em;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__form-message {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: #0A246A;
}

.page-contact__faq {
  background-color: #f4f7f6;
}

.page-contact__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__accordion-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact__accordion-header {
  width: 100%;
  padding: 18px 25px;
  background-color: #0A246A;
  color: #FFD700;
  font-size: 1.15em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-contact__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__accordion-header.active {
  background-color: #071b4a;
}

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

.page-contact__accordion-content {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-contact__accordion-content p {
  padding: 15px 0;
  color: #555;
  font-size: 1em;
  line-height: 1.7;
}

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

.page-contact__cta .page-contact__section-title {
  color: #FFD700;
}

.page-contact__cta .page-contact__section-title::after {
  background-color: #ffffff;
}

.page-contact__cta .page-contact__section-intro {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-contact__cta .page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
  padding: 15px 35px;
  font-size: 1.15em;
}

.page-contact__cta .page-contact__btn--primary:hover {
  background-color: #e6c200;
}

.page-contact__address-info {
  background-color: #f8f9fa;
}

.page-contact__address-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.page-contact__address-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  color: #0A246A;
}

.page-contact__address-text {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-contact__address-map-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 30px;
  font-size: 0.9em;
}

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

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

  .page-contact__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__btn {
    width: 80%;
    margin: 0 auto;
  }

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

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

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

  .page-contact__form {
    padding: 30px 20px;
  }

  .page-contact__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-contact__accordion-content p {
    padding: 10px 0;
  }

  .page-contact__cta {
    padding: 60px 0;
  }
}

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

  .page-contact__hero-description {
    font-size: 0.9em;
  }

  .page-contact__btn {
    width: 90%;
  }

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

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

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

  .page-contact__btn--submit {
    padding: 12px;
    font-size: 1em;
  }
}