body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6e6ca98; /* Initial light beige background */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align content to the top */
    min-height: 100vh; /* Allow body to expand to fit content */
    transition: background-color 0.5s ease; /* Smooth transition for background color */
}

.content-wrapper {
    background-color: rgb(224, 224, 199);
    padding: 40px;
    border: 2px solid #e0d7af; /* Lighter beige border */
    width: 70%;
    max-width: 800px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
    text-align: center;
}

p, ul {
    text-align: left;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

strong {
    color: #6a916ae1; /* Optional for a richer color */
}

/* Dropdown functionality styles */
.dropdown-content {
  display: none;
  padding: 10px 0;
}

.dropdown-btn {
  background-color: #b9b87cb6;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #799174ad; /* Adds a thin line below each button */
}

.dropdown-btn:focus {
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.5); /* Adds a green glow around the button */


}

.dropdown-btn.active {
  background-color: #b5641ddc;
}

.active + .dropdown-content {
  display: block;
}
footer {
    text-align: center;
    padding: 7px;
    background-color: #f5f5dc;
    color: #8b45133a;
    font-size: 9px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e0d7af;
}