@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  background-color: #fcc707;
}

.header {
  width: 100%;
  height: 200px;
  color: var(--black);
}

.header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-top: 80px;
}

.accordion {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--black);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Oxanium";
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.accordion-header .icon {
  font-weight: normal;
  font-size: larger;
  margin-right: 10px;
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
}

.accordion-body.open {
  padding: 0 40px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  html {
    scroll-behavior: smooth;
  }

  .header {
    height: auto;
    padding: 1rem;
    text-align: center;
  }

  .header-content {
    align-items: center;
  }

  .header-content h1 {
    font-size: 1.8rem;
    margin-top: 20px;
    text-align: center;
  }

  .accordion {
    padding: 0 1rem;
  }

  .accordion-header {
    font-size: 0.75rem;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .accordion-header .icon {
    font-size: 1rem;
    margin-right: 8px;
  }

  .accordion-body {
    font-size: 0.85rem;
    padding: 0 16px;
  }

  .accordion-body.open {
    padding: 0 20px;
  }

  .accordion-header:active {
    background-color: #ffe680;
  }
}
