body {
  background-color: #EDEDF7;
  font-family: Calibri, Arial, sans-serif;
  font-size: 26px;
  padding: 0 20px;
  max-width: 800px;
  margin: 40px auto;
}

img {
  max-width: 100%;
  margin: 0 auto 30px;
  display: block;
}

a.button-link {
  display: block;
  padding: 15px;
  background: #FFF;
  color: #4D4D4D;
  box-shadow: 0 2px 3px #CCC;
  width: 100%;
  text-decoration: none;
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  box-sizing: border-box;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

a.button-link:hover {
  box-shadow: 0 4px 6px #BBB;
}

details {
  font-size: 26px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 3px #ccc;
  transition: box-shadow 0.3s ease;
}

details:hover {
  box-shadow: 0 4px 6px #BBB;
}

summary {
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5em;
}

summary::-webkit-details-marker {
  display: none;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #ddd;
  position: relative;
}

.accordion .icon {
  margin-right: 10px;
  font-size: 22pt;
}

.accordion .text {
  flex-grow: 1;
}

.accordion .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.accordion[open] .arrow {
  transform: rotate(135deg); /* Points up when open */
}

.accordion summary .text {
  font-size: 1.3em; /* Try 1.3em, 1.5em, or even 20px */
  font-weight: bold;
}

.accordion summary {
  padding: 16px;
}
