body {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh; /* overrides on browsers that support it */
}

.banner {
  align-items: center;
  text-align: center;
}

.logos {
  display: flex;
  justify-content: space-around; /* equal space between logos */
  align-items: center;           /* vertically center them */
  gap: 10px;
}

/*.banner img {
  height: 100px;
}*/

.title {
  text-align: center;
  color: #00A1DF;
  font-size: 28px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
}

.content {
  flex: 1; /* Take up remaining vertical space */
  display: flex;
  justify-content: center;
  padding: 20px;
}

.content-home {
  align-items: center;
  font-size: 24px;
}

.content-faq {
  flex-direction: column;
  font-size: 20px;
}

.image {
  width: 65%;
  padding: 0 20px;
}

.survey {
  text-align: center;
  padding: 0 20px;
}

li + li {
    margin-top : 0.5em;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  background-color: #00A1DF;
  color: whitesmoke;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, transform 0.2s;
  min-width: 300px;
}

.button:hover {
  background-color: #EDAA5C;
  color: whitesmoke;
  text-decoration: underline;
}

h4 {
  text-decoration: underline;
}

.accordion-container {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: lightgray solid 1px;
}

.accordion {
  display: flex;
  align-items: flex-start;
  background-color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion::before {
  content: '\02795'; /* "Plus" sign (+) */
  font-size: 15px;
  float: left;
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1.5;
}

.active::before {
  content: "\2796"; /* "Minus" sign (-) */
}

.panel {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.footer {
  background-color: #00A1DF;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap; /* Allow flex items to wrap to the next line */
  justify-content: center;
  border-radius: 5px 5px 0 0;
}

.footer a {
  text-decoration: none;
  color: white;
  margin: 5px 15px;
}

.footer a:hover {
  text-decoration: underline;
  color: #EDAA5C;
}


/* Media query for larger screens */
@media screen and (min-width: 768px) {
  .container {
      max-width: 70%;
  }
  .content {
    font-size: 120%;
  }
}

/* Responsive change for smaller screens */
@media (max-width: 1024px) {
    .content-home {
        flex-direction: column;   /* stack vertically */
        align-items: center;      /* center items horizontally */
        text-align: center;
        gap: 2rem;
    }
}