body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5fa;
  color: #222;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 100vh;
}

h1 {
  font-size: 2rem;
  color: #4a0070;
  margin-bottom: 10px;
}

p.lead {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-buttons a {
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-man {
  background-color: #0056b3;
  color: white;
}

.btn-man:hover {
  background-color: #005ec2;
}

.btn-woman {
  background-color: #c50090;
  color: #fff;
}

.btn-woman:hover {
  background-color: #cc008f;
}

img.banner {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

footer {
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* FAQ section */
.faq-section {
  background: #ffffff;
  padding: 60px 20px;
  max-width: 800px;
  margin: 100vh auto 0;
}

.faq-section h2 {
  font-size: 1.5rem;
  color: #4a0070;
  margin-bottom: 30px;
}

.faq-section details {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.faq-section summary {
  font-weight: bold;
  cursor: pointer;
}

.faq-section p {
  margin: 10px 0 0;
}
