.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 20px 25px;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d69a83;
}

.faq-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-header p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.faq-icon {
  font-size: 28px;
  color: #d69a83;
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding-right: 30px;
}

.faq-body p {
  margin-top: 15px;
  color: #ccc;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* 4 column layout + GAP FIX */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  /* <-- REAL GAP HERE */
}

/* 9:16 perfect reels ratio */
.video-box {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.video-box:hover video {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Extra small */
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
