.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: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

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

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-contact__button--primary {
  background-color: #ffc107;
  color: #333;
}

.page-contact__button--primary:hover {
  background-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__button--secondary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-contact__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__methods, .page-contact__business, .page-contact__faq, .page-contact__cta {
  padding: 60px 0;
}

.page-contact__methods {
  background-color: #f8f9fa;
}

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

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

.page-contact__card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-contact__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__card-text {
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
}

.page-contact__business, .page-contact__faq, .page-contact__cta {
  text-align: center;
  background-color: #fff;
}

.page-contact__business .page-contact__section-title,
.page-contact__faq .page-contact__section-title,
.page-contact__cta .page-contact__section-title {
  color: #007bff;
}

.page-contact__description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #444;
}

.page-contact__email a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
}

.page-contact__email a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-contact__cta {
  background-color: #007bff;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

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

.page-contact__cta .page-contact__description {
  color: #e0e0e0;
}

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

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

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

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

  .page-contact__card {
    padding: 25px;
  }

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

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

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

  .page-contact__description {
    font-size: 1em;
  }
}

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

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

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

  .page-contact__button {
    width: 100%;
    box-sizing: border-box;
  }
}