/* privacy-policy.css */

/* Section wrapper */
.privacy-policy {
  margin: 4rem 0;
  text-align: left;
}

/* Main title */
.privacy-policy h1 {
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}

/* Date line */
.policy-date {
  font-style: italic;
  margin-bottom: 2rem;
  color: #555;
}

/* Section headings */
.privacy-policy h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Paragraphs */
.privacy-policy p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Lists */
.privacy-policy ul {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
  list-style: disc;
}

.privacy-policy ul li {
  margin-bottom: 0.5rem;
}
:root {
  --primary: #198754;
  --primary-hover: #146c43;
}

/* ---- Accordion ---- */
.accordion {
  margin: 2rem 0;
}
.accordion-toggle {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  border: none;
  border-radius: 0.25rem;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.accordion-toggle:hover {
  background: var(--primary-hover);
}
.accordion-toggle::after {
  content: '+';
  position: absolute;
  right: 1rem;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s;
}
.accordion-toggle.active {
  background: var(--primary-hover);
}
.accordion-toggle.active::after {
  content: '–';
  transform: rotate(180deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel.open {
  max-height: 800px; /* make sure this is tall enough for your content */
}

/* make expanded accordion headers white / green instead of blue */
#privacyAccordion .accordion-button:not(.collapsed) {
  background-color: #fff !important;
  color: var(--primary) !important;       /* your green */
  border-color: #198754;                   /* same green */
  box-shadow: none;                        /* remove Bootstrap’s inset shadow */
}

/* remove the dotted outline on focus, if you don’t want it */
#privacyAccordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
