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

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

.page-platform-guides-technical-support__hero {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-platform-guides-technical-support__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,blue_green]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-platform-guides-technical-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #fff; /* Ensure high contrast */
}

.page-platform-guides-technical-support__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-platform-guides-technical-support__hero-button {
  display: inline-block;
  background-color: #28a745; /* Auxiliary green */
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-platform-guides-technical-support__hero-button:hover {
  background-color: #218838; /* Darker green on hover */
  transform: translateY(-2px);
}

.page-platform-guides-technical-support__faq-section,
.page-platform-guides-technical-support__contact-section,
.page-platform-guides-technical-support__troubleshooting-section,
.page-platform-guides-technical-support__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-platform-guides-technical-support__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-platform-guides-technical-support__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-platform-guides-technical-support__faq-list {
  display: grid;
  gap: 20px;
}

.page-platform-guides-technical-support__faq-item {
  background-color: #f0f8ff; /* Light blue background for FAQ items */
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-platform-guides-technical-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-platform-guides-technical-support__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.page-platform-guides-technical-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #007bff;
  transition: transform 0.3s ease;
}

.page-platform-guides-technical-support__faq-item.active .page-platform-guides-technical-support__faq-question::after {
  transform: rotate(45deg);
}

.page-platform-guides-technical-support__faq-answer {
  font-size: 1em;
  color: #444;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  margin-top: 15px;
}

.page-platform-guides-technical-support__faq-item.active .page-platform-guides-technical-support__faq-answer {
  display: block; /* Show when active */
}

.page-platform-guides-technical-support__faq-answer p {
  margin-bottom: 10px;
}

.page-platform-guides-technical-support__inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-platform-guides-technical-support__inline-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-platform-guides-technical-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-platform-guides-technical-support__method-card {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-guides-technical-support__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-platform-guides-technical-support__method-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-platform-guides-technical-support__method-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-platform-guides-technical-support__method-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-platform-guides-technical-support__method-button:hover {
  background-color: #218838;
}

.page-platform-guides-technical-support__contact-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #666;
  font-style: italic;
}

.page-platform-guides-technical-support__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-platform-guides-technical-support__troubleshooting-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-platform-guides-technical-support__troubleshooting-list li .highlight {
  font-weight: bold;
  color: #0056b3;
}

.page-platform-guides-technical-support__troubleshooting-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #444;
}

.page-platform-guides-technical-support__cta-section {
  background: linear-gradient(135deg, #007bff, #28a745); /* Primary and auxiliary colors */
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
}

.page-platform-guides-technical-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff; /* Ensure high contrast */
}

.page-platform-guides-technical-support__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-platform-guides-technical-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-platform-guides-technical-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-platform-guides-technical-support__cta-button--primary {
  background-color: #fff;
  color: #007bff;
}

.page-platform-guides-technical-support__cta-button--primary:hover {
  background-color: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-platform-guides-technical-support__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.page-platform-guides-technical-support__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-platform-guides-technical-support .highlight {
  color: #007bff;
}

.page-platform-guides-technical-support__hero .highlight {
  color: #28a745; /* Green highlight on blue background */
}

.page-platform-guides-technical-support__cta-section .highlight {
  color: #fff; /* White highlight on gradient background */
}

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

  .page-platform-guides-technical-support__hero-subtitle {
    font-size: 1.1em;
  }

  .page-platform-guides-technical-support__section-title {
    font-size: 2em;
  }

  .page-platform-guides-technical-support__section-description {
    font-size: 1em;
  }

  .page-platform-guides-technical-support__faq-question {
    font-size: 1.2em;
  }

  .page-platform-guides-technical-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-platform-guides-technical-support__cta-title {
    font-size: 2.2em;
  }

  .page-platform-guides-technical-support__cta-description {
    font-size: 1.1em;
  }

  .page-platform-guides-technical-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-platform-guides-technical-support__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-platform-guides-technical-support__hero-subtitle {
    font-size: 0.9em;
  }

  .page-platform-guides-technical-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-platform-guides-technical-support__section-title {
    font-size: 1.8em;
  }

  .page-platform-guides-technical-support__faq-question {
    font-size: 1.1em;
  }

  .page-platform-guides-technical-support__method-title {
    font-size: 1.5em;
  }

  .page-platform-guides-technical-support__cta-title {
    font-size: 1.8em;
  }
}