@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400&display=swap');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #181926;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  min-height: 100vh;

}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 0.75rem; 
  background-color: #181926;
  padding: 1rem;
}

.nav-btn {
  color: white;
  text-decoration: none;
  background-color: #181926;
  padding: 0.5rem 1rem; 
  border-radius: 7px;
  font-size: 0.95rem; 
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: #181926;
}

/* Active state */
.nav-btn.active {
  background-color: #ff69b4;
  font-weight: bold;
}

.simple-home, .simple-about {
  background: none;
  border-radius: 0;
  padding: 0;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: none;
}
.simple-home h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.7rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.7rem;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.simple-home .tagline {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.5;
}
.simple-about h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.simple-about .about-text {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.5;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.team-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.avatar-min {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #232336;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.1rem;
  overflow: hidden;
}
.avatar-min img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.person-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}
.person-role {
  font-size: 1rem;
  color: #ffb6ea;
  font-weight: 400;
}
@media (max-width: 500px) {
  .navbar {
    max-width: 98vw;
    gap: 0.3rem;
    margin: 1.2rem 0 1.5rem 0;
  }
  .simple-home, .simple-about {
    max-width: 98vw;
  }
  .team-grid {
    gap: 0.7rem;
  }
  .avatar-min {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .simple-home h1 {
    font-size: 2rem;
  }
  .simple-home .tagline {
    font-size: 1.05rem;
  }
  .simple-about h1 {
    font-size: 1.3rem;
  }
}





#femboyQuiz {
  background: #1e1f2f;
  border: 2px solid #2d2e41;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 182, 234, 0.15);
}

.quiz-question {
  margin-bottom: 1.5rem;
  text-align: left;
}

.quiz-question p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffb6ea;
  margin-bottom: 0.4rem;
}

.quiz-question label {
  display: block;
  margin: 0.35rem 0;
  font-size: 1rem;
  cursor: pointer;
  color: #e3e3e3;
  transition: color 0.2s ease;
}

.quiz-question label:hover {
  color: #ffccff;
}

input[type="radio"] {
  margin-right: 0.5rem;
  accent-color: #ff85e4;
}

button {
  display: inline-block;
  background: linear-gradient(135deg, #ff85e4, #c770ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px #ffb6ea80;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px #ffb6ea;
}

#result {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffc7f5;
  text-shadow: 0 0 4px #ffb6ea;
  animation: fadeInGlow 0.6s ease-in-out;
  text-align: center;
}

@keyframes fadeInGlow {
  from {
    opacity: 0;
    transform: scale(0.9);
    text-shadow: none;
  }
  to {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 4px #ffb6ea;
  }
}

    .cool-stuff h2 {
      color: #a6da95;
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 0.7rem;
    }
    .cool-stuff ul {
      padding-left: 1.2rem;
      margin: 0;
    }
    .cool-stuff li {
      margin-bottom: 0.5rem;
      color: #cad3f5;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5em;
    }
    .cool-stuff a {
      color: #f5bde6;
      text-decoration: underline;
      display: inline-flex;
      align-items: center;
      gap: 0.4em;
      transition: color 0.18s;
    }

    .cool-stuff a svg {
      width: 1.15em;
      height: 1.15em;
      vertical-align: middle;
      fill: currentColor;
      flex-shrink: 0;
      opacity: 0.85;
      transition: fill 0.18s;
    }



.daily-quote {
  font-size: 1rem;
  font-style: italic;
  color: #ffc7f5;
  background: #1e1f2f;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(255, 182, 234, 0.08);
  margin: 1.5rem auto;
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid #2d2e41;
}


.welcome-card {
  background: #232336;
  border-radius: 1.2rem;
  padding: 1.2rem 1rem;
  max-width: 340px;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 182, 234, 0.1);
}

.intro-line {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffb6ea;
  margin-bottom: 0.6rem;
}


.kawaii-info {
  background: #1e1f2f;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid #2e2f44;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 182, 234, 0.05);
}

.kawaii-info h2 {
  color: #ffb6ea;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.kawaii-info p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.star-divider {
  width: 100%;
  max-width: 340px;
  border: none;
  border-top: 2px dashed #ffb6ea55;
  margin: 2rem 0 1rem;
  position: relative;
}

.star-divider::after {
  content: "🌟";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #181926;
  padding: 0 0.4rem;
  font-size: 1.2rem;
}

.footer {
  max-width: 340px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 2rem;
}


.quote-divider {
  width: 100%;
  max-width: 340px;
  border: none;
  border-top: 2px dashed #ffb6ea55;
  margin: 3rem auto 2rem;
  position: relative;
  height: 1px;
  background: transparent; 
  overflow: visible; 
  z-index: 0;
}

.quote-divider::after {
  content: "✧"; /* Star */
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem; 
  color: #ffb6ea;
  font-weight: 900;
  background-color: #181926; 
  padding: 0 0.5rem;
  text-shadow:
    0 0 8px #ffb6ea,
    0 0 16px #ff85e4,
    0 0 32px #ffcaff;
  z-index: 1;
  pointer-events: none; 
}


.scrollable-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.scrollable-list::-webkit-scrollbar {
  width: 6px;
}
.scrollable-list::-webkit-scrollbar-thumb {
  background: #ffb6ea;
  border-radius: 6px;
}
.scrollable-list::-webkit-scrollbar-track {
  background: #232336;
}


    form {
      background: #232336;
      padding: 1rem;
      border-radius: 1rem;
      max-width: 340px;
      width: 100%;
      box-shadow: 0 0 10px rgba(255, 182, 234, 0.1);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    input, textarea {
      width: 100%;
      background: #181926;
      border: none;
      border-radius: 0.7rem;
      padding: 0.5rem 0.75rem;
      font-size: 1rem;
      color: #ffc7f5;
      resize: vertical;
      font-family: 'Roboto', sans-serif;
    }
    input::placeholder, textarea::placeholder {
      color: #ff9ee7aa;
    }

    #confessions-container {
      margin-top: 2rem;
      max-width: 340px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      overflow-y: auto;
      max-height: 50vh;
      padding-right: 0.5rem;
    }
    .confession {
      background: #232336;
      padding: 0.75rem 1rem;
      border-radius: 1rem;
      box-shadow: 0 0 8px rgba(255, 182, 234, 0.12);
    }
    .confession strong {
      color: #ff85e4;
    }
    .confession small {
      display: block;
      margin-top: 0.25rem;
      font-size: 0.8rem;
      color: #ffb6eaaa;
      font-style: italic;
    }



#confessions-container::-webkit-scrollbar-track {
  background: #181926;
}

#confessions-container::-webkit-scrollbar-thumb {
  background-color: #4c4f69;
  border-radius: 10px;
}

#confessions-container::-webkit-scrollbar-thumb:hover {
  background-color: #4c5b69;
}

#confessions-container {
  scrollbar-width: thin;
  scrollbar-color: #4c5b69 #181926;
}





body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 0.75rem; 
  background-color: #181926;
  padding: 1rem;
}

.nav-btn {
  color: white;
  text-decoration: none;
  background-color: #181926;
  padding: 0.5rem 1rem; 
  border-radius: 7px;
  font-size: 0.95rem; 
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: #181926;
}

/* Active state */
.nav-btn.active {
  background-color: #ff69b4;
  font-weight: bold;
}

.simple-home, .simple-about {
  background: none;
  border-radius: 0;
  padding: 0;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: none;
}
.simple-home h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.7rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.7rem;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.simple-home .tagline {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.5;
}
.simple-about h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.simple-about .about-text {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.5;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.team-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.avatar-min {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #232336;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.1rem;
  overflow: hidden;
}
.avatar-min img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.person-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}
.person-role {
  font-size: 1rem;
  color: #ffb6ea;
  font-weight: 400;
}
@media (max-width: 500px) {
  .navbar {
    max-width: 98vw;
    gap: 0.3rem;
    margin: 1.2rem 0 1.5rem 0;
  }
  .simple-home, .simple-about {
    max-width: 98vw;
  }
  .team-grid {
    gap: 0.7rem;
  }
  .avatar-min {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .simple-home h1 {
    font-size: 2rem;
  }
  .simple-home .tagline {
    font-size: 1.05rem;
  }
  .simple-about h1 {
    font-size: 1.3rem;
  }
}





#femboyQuiz {
  background: #1e1f2f;
  border: 2px solid #2d2e41;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 182, 234, 0.15);
}

.quiz-question {
  margin-bottom: 1.5rem;
  text-align: left;
}

.quiz-question p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffb6ea;
  margin-bottom: 0.4rem;
}

.quiz-question label {
  display: block;
  margin: 0.35rem 0;
  font-size: 1rem;
  cursor: pointer;
  color: #e3e3e3;
  transition: color 0.2s ease;
}

.quiz-question label:hover {
  color: #ffccff;
}

input[type="radio"] {
  margin-right: 0.5rem;
  accent-color: #ff85e4;
}

button {
  display: inline-block;
  background: linear-gradient(135deg, #ff85e4, #c770ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px #ffb6ea80;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px #ffb6ea;
}

#result {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffc7f5;
  text-shadow: 0 0 4px #ffb6ea;
  animation: fadeInGlow 0.6s ease-in-out;
  text-align: center;
}

@keyframes fadeInGlow {
  from {
    opacity: 0;
    transform: scale(0.9);
    text-shadow: none;
  }
  to {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 4px #ffb6ea;
  }
}

    .cool-stuff h2 {
      color: #a6da95;
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 0.7rem;
    }
    .cool-stuff ul {
      padding-left: 1.2rem;
      margin: 0;
    }
    .cool-stuff li {
      margin-bottom: 0.5rem;
      color: #cad3f5;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5em;
    }
    .cool-stuff a {
      color: #f5bde6;
      text-decoration: underline;
      display: inline-flex;
      align-items: center;
      gap: 0.4em;
      transition: color 0.18s;
    }

    .cool-stuff a svg {
      width: 1.15em;
      height: 1.15em;
      vertical-align: middle;
      fill: currentColor;
      flex-shrink: 0;
      opacity: 0.85;
      transition: fill 0.18s;
    }



.daily-quote {
  font-size: 1rem;
  font-style: italic;
  color: #ffc7f5;
  background: #1e1f2f;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(255, 182, 234, 0.08);
  margin: 1.5rem auto;
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid #2d2e41;
}


.welcome-card {
  background: #232336;
  border-radius: 1.2rem;
  padding: 1.2rem 1rem;
  max-width: 340px;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 182, 234, 0.1);
}

.intro-line {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffb6ea;
  margin-bottom: 0.6rem;
}


.kawaii-info {
  background: #1e1f2f;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 1px solid #2e2f44;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 182, 234, 0.05);
}

.kawaii-info h2 {
  color: #ffb6ea;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.kawaii-info p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.star-divider {
  width: 100%;
  max-width: 340px;
  border: none;
  border-top: 2px dashed #ffb6ea55;
  margin: 2rem 0 1rem;
  position: relative;
}

.star-divider::after {
  content: "🌟";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #181926;
  padding: 0 0.4rem;
  font-size: 1.2rem;
}

.footer {
  max-width: 340px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 2rem;
}


.quote-divider {
  width: 100%;
  max-width: 340px;
  border: none;
  border-top: 2px dashed #ffb6ea55;
  margin: 3rem auto 2rem;
  position: relative;
  height: 1px;
  background: transparent; 
  overflow: visible; 
  z-index: 0;
}

.quote-divider::after {
  content: "✧"; /* Star */
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem; 
  color: #ffb6ea;
  font-weight: 900;
  background-color: #181926; 
  padding: 0 0.5rem;
  text-shadow:
    0 0 8px #ffb6ea,
    0 0 16px #ff85e4,
    0 0 32px #ffcaff;
  z-index: 1;
  pointer-events: none; 
}


.scrollable-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.scrollable-list::-webkit-scrollbar {
  width: 6px;
}
.scrollable-list::-webkit-scrollbar-thumb {
  background: #ffb6ea;
  border-radius: 6px;
}
.scrollable-list::-webkit-scrollbar-track {
  background: #232336;
}


    form {
      background: #232336;
      padding: 1rem;
      border-radius: 1rem;
      max-width: 340px;
      width: 100%;
      box-shadow: 0 0 10px rgba(255, 182, 234, 0.1);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    input, textarea {
      width: 100%;
      background: #181926;
      border: none;
      border-radius: 0.7rem;
      padding: 0.5rem 0.75rem;
      font-size: 1rem;
      color: #ffc7f5;
      resize: vertical;
      font-family: 'Roboto', sans-serif;
    }
    input::placeholder, textarea::placeholder {
      color: #ff9ee7aa;
    }

    #confessions-container {
      margin-top: 2rem;
      max-width: 340px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      overflow-y: auto;
      max-height: 50vh;
      padding-right: 0.5rem;
    }
    .confession {
      background: #232336;
      padding: 0.75rem 1rem;
      border-radius: 1rem;
      box-shadow: 0 0 8px rgba(255, 182, 234, 0.12);
    }
    .confession strong {
      color: #ff85e4;
    }
    .confession small {
      display: block;
      margin-top: 0.25rem;
      font-size: 0.8rem;
      color: #ffb6eaaa;
      font-style: italic;
    }



#confessions-container::-webkit-scrollbar-track {
  background: #181926;
}

#confessions-container::-webkit-scrollbar-thumb {
  background-color: #4c4f69;
  border-radius: 10px;
}

#confessions-container::-webkit-scrollbar-thumb:hover {
  background-color: #4c5b69;
}

#confessions-container {
  scrollbar-width: thin;
  scrollbar-color: #4c5b69 #181926;
}






.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-card {
  background: #23243a;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px #0003;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.gallery-card:hover {
  box-shadow: 0 8px 24px #0005;
}
.gallery-img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px #0002;
  background: #222;
  display: block;
  margin: 0 auto;
}

.gallery-caption {
  margin-top: 0.8rem;
  color: #a6da95;
  font-size: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  word-break: break-word;
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2em;
    width: 100%;
  }

  .navbar-row {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    width: 100%;
    justify-content: center;
  }

  .navbar-row-secondary {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
    justify-items: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .gallery-img {
    width: 80vw;
    max-width: 250px;
    border-radius: 0.7rem;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
  }
}



    details {
      background: #212121;
      border-radius: 8px;
      margin: 0.75rem 0;
      padding: 0.8rem 1rem;
      border: 1px solid #000000;
      transition: all 0.3s ease;
    }

    details:hover {
      border-color: #d47ac6;
      background: #212121;
    }

    summary {
      cursor: pointer;
      font-weight: 600;
      font-size: 1.05rem;
      outline: none;
    }

    summary::marker {
      color: #d47ac6;
    }

    details[open] {
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

#faq-general {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d47ac6; 
  border-left: 4px solid #d47ac6;
  padding-left: 0.75rem;
  letter-spacing: 0.5px;
}

#faq-general + details,
#faq-general + details + details,
#faq-general + details + details + details {
  margin-left: 0.5rem;
}

  

