main {
  width: 100%;
  min-height: calc(100vh - 389px - 70px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat";
  color: #333333;
}

p {
  padding: 20px 0;
  font-family: "Poppins";
}

.about-section {
  padding: 20px 0;
}

.dropdown {
  width: 100%;
  max-width: 1000px;
  margin: 0 0 10px 0;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-toggle {
  display: none;
}

.dropdown-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: rgba(136, 109, 83, 0.9);
  font-family: "Poppins";
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.dropdown-button:hover {
  background-color: rgb(122, 97, 74);
}

/* Content hidden by default */
.dropdown-content {
  display: none; /* Hide content initially */
  background-color: rgba(136, 109, 83, 0.1);
  font-family: "Poppins";
  color: rgba(136, 109, 83, 1);
  padding: 10px 15px;
  border-top: 1px solid #ccc;
  text-align: center;
  box-sizing: border-box;
}

/* Show content when checkbox is checked */
.dropdown-toggle:checked + .dropdown-button + .dropdown-content {
  display: block; /* Show content */
}
