/* ---------------------------------------------------------------------------------- */
/* --- SUPPORT.HTML SPECIFIC STYLES --- */
/* ---------------------------------------------------------------------------------- */

/* Main content container for the support page */
.support-page-content {
  background: #f9fafb; /* Consistent light grey background */
  padding: 4rem 0 6rem 0; /* Vertical spacing */
  transition:
    transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 360ms ease;
  transform-origin: top center;
}

/* Grid layout for the FAQ items */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px; /* Constrain width for readability */
  margin: 0 auto 4rem auto; /* Center the grid and add bottom margin */
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr; /* Keep single column for longer questions */
  }
}

/* Individual FAQ item styling */
.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

/* FAQ Question styling */
.faq-item h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* FAQ Answer styling */
.faq-item p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.faq-item p a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #c7d2fe;
}

.faq-item p a:hover {
  text-decoration-color: #4f46e5;
}

/* Styling for the final contact card */
.contact-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 2rem;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact {
  display: inline-block;
  background: #4f46e5;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-contact:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}
