<style>
.faq-section {
  padding: 60px 0;
  background: #ffffff;
}

.faq-title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.faq-item {
  background: #fff;
  margin-bottom: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  padding: 16px 20px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #ffffff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 18px 20px;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Mobile */
@media(max-width: 600px) {
  .faq-title { font-size: 26px; }
  .faq-question { font-size: 16px; }
}
</style>

<style>
.internal-links {padding: 40px 0; background: #fafafa;}
.internal-links h2 {text-align:center; margin-bottom:20px; font-size:26px;}
.location-links {list-style:none; padding:0; text-align:center;}
.location-links li {display:inline-block; margin:8px 12px;}
.location-links a {
  padding:8px 14px;
  background:#f2f2f2;
  border-radius:6px;
  color:#333;
  text-decoration:none;
  transition:0.3s;
}
.location-links a:hover {
  background:#000;
  color:#fff;
}
</style>