.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq-wrapper h2 {
  margin-bottom: 24px;
}
.faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 18px 22px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.faq-item summary {
  list-style: none;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary::after,
.faq-item summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 0.9rem;
  color: #f39a02;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item p {
  margin-top: 12px;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.6;
}


.mygallery-ztw7r-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
  background-color: #fff;
}
.mygallery-ztw7r-item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}
.mygallery-ztw7r-item:hover {
  transform: scale(1.02);
}
.mygallery-ztw7r-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
#mygallery-ztw7r-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}
#mygallery-ztw7r-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
#mygallery-ztw7r-lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
