
.faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 10px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin-top: 100px;
}
.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 38px;
  color: #223a5e;
  font-family: inherit;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-content: center;
}
.faq-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 350px;
  min-height: 80px;
  padding: 32px 32px 20px 32px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.faq-question {
  font-size: 1.18rem;
  font-weight: 600;
  color: #223a5e;
  margin-bottom: 0;
  padding-right: 38px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-toggle {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f7fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0076f6;
  font-size: 1.7rem;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  border: none;
}
.faq-card.open .faq-toggle {
  transform: translateY(-50%) rotate(180deg);
}
.faq-toggle:hover {
  background: #eaf2ff;
}
.faq-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(.4,2,.6,1), opacity 0.3s;
  font-size: 1.08rem;
  color: #444;
  margin-top: 0;
  font-family: inherit;
  will-change: max-height, opacity;
  padding: 0;
}
.faq-card.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 8px;
}
.faq-more-wrap {
  width: 100%;
  text-align: center;
  margin: 36px 0 0 0;
}
.faq-more-btn {
  background: #1877ff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1.1em;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}
.faq-more-btn:hover {
  background: #0d5fd3;
}
@media (max-width: 1200px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 18px; }
  .faq-card { width: 95vw; }
}




.home-cta-wide {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fafbfc;
  padding: 32px 0 32px 0;
}
.home-cta-wide-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 24px 32px;
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.home-cta-wide-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff6f2;
  box-shadow: 0 2px 8px rgba(255,94,46,0.07);
}
.home-cta-wide-content {
  flex: 1 1 0;
  padding: 0 24px;
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-cta-wide-service {
  color: #444;
  font-size: 1em;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.home-cta-wide-title {
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 2px;
}
.home-cta-wide-desc {
  color: #222;
  font-size: 1em;
  font-weight: 400;
}
.home-cta-wide-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  align-items: stretch;
}
.home-cta-wide-phone,
.home-cta-wide-book {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.15em;
  border-radius: 24px;
  padding: 14px 38px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.home-cta-wide-phone {
  background: #ff5e2e;
  color: #fff;
}
.home-cta-wide-book {
  background: #1877ff;
  color: #fff;
}
.home-cta-wide-phone:hover {
  background: #e04c1a;
}
.home-cta-wide-book:hover {
  background: #0d5fd3;
}
@media (max-width: 900px) {
  .home-cta-wide-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 8px;
  }
  .home-cta-wide-content {
    border: none;
    padding: 0;
  }
  .home-cta-wide-actions {
    align-items: stretch;
    min-width: 0;
  }
}
