:root {
  --brand: #6a1b9a;
  --bg-light: #fff8f5;
  --cta-bg: #6a1b9a;
  --cta-text: #fff;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
}

h1, h2 {
  color: var(--brand);
  margin-bottom: 0.5em;
}

p {
  line-height: 1.6;
  margin-bottom: 1em;
}

.bulleted {
  padding-left: 1.25rem;
  margin-bottom: 2em;
}

.bulleted li {
  margin-bottom: 8px;
}
.bulleted a {
  color: #0077cc;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bulleted a:hover {
  color: #005fa3;
  text-decoration: none;
}
.cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  border: 1px solid transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  perspective: 1000px;
  width: auto;
}

.slide {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 16px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide:hover img {
  transform: scale(1.03) rotateY(-5deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.faq-wrap {
  margin-top: 40px;
  background-color: #f9f4f3;
  padding: 24px;
  border-radius: 8px;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.faq-question {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  color: #000 !important;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 12px 0;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive Layout */
@media (max-width: 767px) {
  .slide {
    flex: 0 0 100%;
    padding: 12px;
  }

  .slide img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  main {
    padding: 24px 12px;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
} 
.image-sequence {
      position: relative;
      aspect-ratio: 16 / 9;
      max-width: 720px;
      margin: 2rem auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .frame {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .frame.active {
      opacity: 1;
    }
    .dark-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }
    .overlay-text {
      position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      z-index: 2;
      text-align: center;
      padding: 0.75rem 1.5rem;
    } 
.overlay-text h1 {
 position: absolute;
      bottom: 10%;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      z-index: 2;
      text-align: center;
      padding: 0.75rem 1.5rem;
}
    .section-light {
  background-color: #f9f4f3;
  padding: 40px 24px;
}

.section-neutral {
  background-color: none;
  padding: 40px 24px;
}


@media (min-width: 768px) and (max-width: 1024px) {
  .slide {
    flex: 0 0 50%;
  }
}
