/* 
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98 
*/

h1,
h2,
p,
li {
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.4rem;
  margin-top: 2rem;
}

p,
li {
  font-size: 2rem;
}

li {
  margin-left: 2rem;
}

/* Accordion styles */
.accordion-item:first-of-type {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.2);
  background-color: #f8f8f8;
}

.accordion-header {
  background-color: #f8f8f8;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 10px;
}

.accordion-header:hover {
  background-color: #e0e0e0;
}

.accordion-header.active {
  background-color: #91ba91;
  color: white;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-header::after {
  content: "▼";
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-header.active::after {
  transform: rotate(180deg);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f8f8f8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0 1.5rem;
  margin-bottom: 0;
}

.accordion-content.active {
  max-height: 1000px; /* Adjust as needed */
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.accordion-content li {
  padding: 0.5rem 0;
}
