body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  background: #f4f1fa;
  color: #2c2c2c;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #4b0082; /* indigo */
  color: #fff;
  padding: 1rem;
}

header h1 {
  margin: 0;
}

header img {
  width: 80px;
  height: auto;
}

nav {
  background: #6a0dad; /* purple */
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: white;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

nav a:hover {
  background: #9b30ff; /* purple highlight */
}

.dropdown {
  position: relative;
}

.dropdown.open .dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #6a0dad;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  padding: 0.75rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.container {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  height: 200px;
  margin-top: 2rem;
  background: #fef6ff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.testimonial {
  display: none;
  padding: 1.5rem;
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-author {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-style: italic;
  text-align: right;
  color: #6a0dad;
}

.testimonial-indicators {
  text-align: center;
  margin-top: 0.5rem;
}

.testimonial-indicators span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
}

.testimonial-indicators .active-indicator {
  background-color: #6a0dad;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-content {
    display: none;
    position: static;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 2px solid #9b30ff;
  }

  .dropdown .dropdown-content {
    display: none !important;
    border-left: 2px solid #9b30ff;
  }

  .dropdown.open .dropdown-content {
    display: block !important;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
  }

  .dropdown-content a {
    padding-left: 0;
    font-size: 0.95rem;
  }

  .dropdown-content a:hover {
    background: rgba(155, 48, 255, 0.1);
  }
}

.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Comic Neue', sans-serif;
}

.faq-item {
  padding-bottom: 4px;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  padding: 1rem;
  background: #fef6ff;
  border: 2px solid #9b30ff;
  border-radius: 6px;
  cursor: pointer;
  color: #4b0082;
  font-weight: bold;
  transition: background 0.3s ease;
}

.faq-question[aria-expanded='true'] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.faq-question:hover {
  background: #f4eaff;
}

.faq-answer {
  padding: 1rem;
  background: #ffffff;
  border: 2px solid #9b30ff;
  border-top: none;
  border-radius: 0 0 6px 6px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
