
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: url('assets/images/flower.png') no-repeat top right;
    background-size: 500px;
    background-attachment: fixed;
    color: #9caf88;
    font-size: 1.1rem;
    padding-top: 100px; /* account for nav height */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

h1, h2, h3, h4 {
    color: #9caf88;
}

.btn-sage, .btn-success {
    background-color: #9caf88;
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 1rem;
}

.btn-sage:hover, .btn-success:hover {
    background-color: #86a270;
}

input[type="text"], input[type="email"], input[type="number"],
input[type="password"], textarea, select {
    font-size: 1.1rem;
    padding: 0.75rem;
}

nav.navbar {
    background-color: #9caf88;
}
nav.navbar a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 150vh;
    background-size: 500px;
    background-attachment: fixed;
    opacity: 0.25;
    z-index: -1;
}

.container, .bg-white {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0px 0 10px rgba(0,0,0,0.05);
}

/* FAQ Styles */
.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  border: 1px solid #ccc;
  margin-bottom: 0;
  background-color: #f7f7f7;
}

.faq-question:hover {
  background-color: #eef0e0;
}

.faq-toggle-icon {
  font-size: 2rem;
  margin-right: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 1rem;
  border: 1px solid #ccc;
  border-top: none;
  margin-bottom: 1rem;
  background: white;
}

.faq-question.open .faq-toggle-icon {
  transform: rotate(45deg); /* Turns + into × */
}

