/* style/faq-technical-support.css */
.page-faq-technical-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-faq-technical-support__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-faq-technical-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-technical-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-faq-technical-support__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-faq-technical-support__hero-section .page-faq-technical-support__container {
  position: relative;
  z-index: 1;
}

/* Buttons */
.page-faq-technical-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  margin: 10px;
}

.page-faq-technical-support__button--primary {
  background-color: #ffc107; /* Gold */
  color: #0056b3; /* Darker blue for contrast */
}

.page-faq-technical-support__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-faq-technical-support__button--secondary {
  background-color: #007bff; /* Blue */
  color: #fff;
  border: 1px solid #007bff;
}

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

.page-faq-technical-support__button--tertiary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-faq-technical-support__button--tertiary:hover {
  background-color: #ffc107;
  color: #0056b3;
  transform: translateY(-2px);
}

/* Section Titles */
.page-faq-technical-support__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 60px;
  position: relative;
}

.page-faq-technical-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-faq-technical-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -30px auto 50px;
  color: #555;
}

/* Common Issues Section */
.page-faq-technical-support__common-issues {
  padding: 60px 0;
  background-color: #f8f9fa;
  position: relative;
}

.page-faq-technical-support__issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-faq-technical-support__issue-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-faq-technical-support__issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-faq-technical-support__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-faq-technical-support__card-text {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-faq-technical-support__common-issues .page-faq-technical-support__section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Methods Section */
.page-faq-technical-support__contact-methods {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

.page-faq-technical-support__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-faq-technical-support__method-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-technical-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-technical-support__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-faq-technical-support__contact-methods .page-faq-technical-support__section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-faq-technical-support__cta-section {
  background: linear-gradient(45deg, #0056b3, #007bff); /* Darker gradient for CTA */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-technical-support__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-faq-technical-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-technical-support__cta-buttons .page-faq-technical-support__button {
  margin: 10px;
}

.page-faq-technical-support__cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-faq-technical-support__cta-section .page-faq-technical-support__container {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-technical-support__hero-title {
    font-size: 2.5em;
  }
  .page-faq-technical-support__section-title {
    font-size: 2em;
  }
  .page-faq-technical-support__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-faq-technical-support__hero-title {
    font-size: 2em;
  }
  .page-faq-technical-support__hero-description {
    font-size: 1.1em;
  }
  .page-faq-technical-support__section-title {
    font-size: 1.8em;
  }
  .page-faq-technical-support__issue-grid, .page-faq-technical-support__method-grid {
    grid-template-columns: 1fr;
  }
  .page-faq-technical-support__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-faq-technical-support__cta-title {
    font-size: 1.8em;
  }
  .page-faq-technical-support__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq-technical-support__hero-title {
    font-size: 1.8em;
  }
  .page-faq-technical-support__section-title {
    font-size: 1.5em;
  }
  .page-faq-technical-support__cta-title {
    font-size: 1.6em;
  }
  .page-faq-technical-support__button {
    width: 100%;
    margin: 10px 0;
  }
  .page-faq-technical-support__cta-buttons {
    flex-direction: column;
  }
}