#header {
  background-color: darkorange;
}

#branding {
  font-family: henny_penny, system-ui, sans-serif;
  font-size: 30px;
  font-weight: bold;
}

main {
  padding: 2rem 0;
}

.download-button {
  background-color: #4CAF50; /* Green background */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(to right, #4CAF50, #388E3C);
}

.download-button svg {
  margin-right: 5px;
  fill: white; /* Adjust fill color if needed */
}

.download-button:hover {
  background-color: #3e8e41; /* Darker green on hover */
  transform: scale(1.05);
}

.description-container {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(to right, #f5f5f5, #eee);
}

.description-container:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.description-title {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

.main-description {
  flex: 1;
}

.main-description p {
  line-height: 1.5;
  margin-bottom: 15px;
  &:first-letter {
    font-size: 2em;
    color: #333; /* Adjust color as desired */
    font-weight: bold;
    float: left;
    line-height: 1;
    margin: 0 5px 0 0;
    }
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 5px;
  font-weight: bold;
}

.description-title, .features-list li {
  color: #333;
}

.features-list li:before {
  content: "\2713";
  color: green;
  margin-right: 10px;
  font-size: 20px;
}


/* Privacy */
.qa-container {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
}

details {
  margin-bottom: 15px;
}

details p {
  padding: 20px;
}

summary {
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
}

summary::marker {
  content: "+ ";
  margin-right: 10px;
  position: relative;
  font-size: 20px;
}

details[open] summary::marker {
  content: "- ";
  margin-right: 10px;
  position: relative;
  font-size: 20px;
}
