body {
  background: radial-gradient(circle at 10% 20%, #10691c49, transparent 40%),
    radial-gradient(circle at 80% 30%, #0b682763, transparent 40%),
    radial-gradient(circle at 50% 80%, #145e1491, #1864283a 70%);
  background-blend-mode: screen;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #fff;
}

h2 {
  text-align: center;
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 2rem;
  position: relative;
  color: white;
}

h2::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background: #fff;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.presentation-content {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(13, 206, 68, 0.15);
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: #57725e;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(13, 206, 68, 0.25);
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
  line-height: 1.5;
  color: #57725e;
  font-weight: 600;
}

.youpla {
  color: #57725e;
}

.youpla::after {
  content: "";
  display: block;
  width: 200px;
  height: 4px;
  background: #57725e;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}
