body    {
    background-color: #C9CCFF;
    font-family: Inter, sans-serif;
    padding: 0;
    margin: 0;
    letter-spacing: 0.06em;
}

p   {
    color: #1b1b1b;
    font-size: 14px
}

h1  {
  text-align: center;
  margin-top: 40px;
}

.logoHeader {
    display: flex;
    justify-content: center;
    margin: 25px 0 25px 0px;
}

.logoHeader img {
    width: 40%;
}

.contentBlock {
    background-color: #fff;
    padding: 35px;
    text-align: left;
    font-size: 1em;
    border-radius: 20px 20px 0 0;
    padding-bottom: 200px;
}

.bottomButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 1000;
}

.bottomButton a {
    width: 100%;
    padding: 20px 10px;
    font-size: 20px;
    background-color: #9BD24D;
    color: #fff;
    border-radius: 10px;
    border: 0;
    border-bottom: 6px solid #5B7E2A;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.bottomButton img {
  width: 25px;
  margin-left: 20px;
  padding: 10px;
  background-color: #404598;
  border-radius: 5px;
}

.bottomButton a:active {
    background-color: #5B7E2A;
}

.accordion {
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #F7F7FF;
    cursor: pointer;
    font-weight: bold;
    color: #000;
  }

  .accordion-button {
    background: none;
    border: none;
    font-size: 16px;
    pointer-events: none; /* Allow clicks to pass through so whole header is clickable */
    color: #fff;
    background-color: #404598;
    padding: 10px;
    aspect-ratio: 1/1 !important;
    border-radius: 5px;
  }

  .accordion-content {
    padding: 0px;
    max-height: 0;
    overflow: auto;
    background-color: #F7F7FF;
    transition: max-height 0.5s ease, padding 0.2s ease;
    color: #fff;
  }

  .accordion.open .accordion-content {
    padding: 16px;
    max-height: 4000px; /* Adjust if content gets cut off */
  }

  .yourCode {
    color: #ffffff;
    background-color: #404598;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;  
  }

  .codeText {
    color: #fff;
    padding: 10px;
  }

  .codeText p  {
    color: #fff;  
  }

  .codeBlock {
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
    aspect-ratio: 1/1;
  }

  .tipsRow  {
    display: flex;
    flex-direction: column;
  }

  .tip  {
    color: #fff;
    margin-top: 20px;
    width: auto;
  }

  .tip p  {
    color: #fff;
  }

  .tip h2 {
    font-size: 2em;
    margin: 0;
  }

  .tip h3 {
    margin-bottom: 0;
  }

.tip1 {
  background-color: #9BD24D;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.tip4 {
  background-color: #404598;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.tip3 {
  background-color: #FAC562;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.tip2 {
  background-color: #F78F61;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.animalStoryBlock {
  padding: 20px;
  background-color: #F78F61;
  border-radius: 10px;
}

.storyTop {
  display: flex;
  align-items: center;
  color: #fff;
  margin: 0;
}

.storyLeft  {
  width: 40%;
}

.storyRight {
  margin-left: 20px;
}

.storyBottom p {
  color: #fff;
}

.storyBottom  {
  margin: 0;
}

.storyTop h3  {
  margin: 0;
  margin-bottom: 10px;
}

h4  {
  margin: 0;
  font-weight: 400;
}