/* ==============================================
   FAQ Accordion — Fast Services
   Used on: google-workspace, microsoft-365,
            zoho-workplace, blog pages
   ============================================== */

.faq-accordion {
  margin: 1.5rem 0;
}

.faq-item {
  border: 1px solid #e0e6f0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
  gap: 12px;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #44ce6f;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: '\2212'; /* minus sign */
}

.faq-item summary:hover {
  background: #f8fbff;
}

.faq-item[open] summary {
  border-bottom: 1px solid #e0e6f0;
  background: #f8fbff;
}

.faq-answer {
  padding: 16px 20px 18px;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.faq-related-links {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8fbff;
  border-radius: 8px;
  border-left: 4px solid #44ce6f;
  font-size: 0.97rem;
  color: #444;
}

.faq-related-links p {
  margin: 0;
}

@media (max-width: 600px) {
  .faq-item summary {
    font-size: 0.93rem;
    padding: 14px 16px;
  }

  .faq-answer {
    padding: 14px 16px;
  }
}

/* ==============================================
   Equal-Height Card Rows
   Used on: services.html, managed-services.html
   ============================================== */
.equal-card-row {
  align-items: stretch !important;
}

/* Each column becomes a vertical flex container so
   the inner card fills its full height */
.equal-card-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.equal-card-row .single-featured-services-box,
.equal-card-row .single-services-item-box {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
