  /* Base styles */


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    table th {
        font-weight: normal; 
    }

     /* Website Fonts */ 
    .fascinate-inline-regular {
        font-family: "Fascinate Inline", system-ui;
        font-weight: 400;
        font-style: normal;
    }

    .cantora-one-regular {
        font-family: "Cantora One", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    html, body {
        font-family: 'Cantora One', sans-serif;
        background-color: #fbe595;
        color: #5e3b00;
        text-align: center;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        display: block;
        height: auto; 
        overflow: visible;
    }

    a {
      text-align: center;
      color: #b35b00;
    }

        a {
      text-decoration: none;
      color: #b35b00;
    }

    a:hover {
      color: #ff9900;
    }

    /* Header */
    .site-header {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 95%;
      margin: 20px auto 0 auto;
      gap: 25px;
      flex-shrink: 0;
    }

    .shiba-logo {
      width: auto;
      max-height: 100px;
      display: block;
      margin-top: 15px;
    }

    .site-nav {
      background-color: #a86014;
      border-radius: 12px;
      padding: 6px 12px;
      flex-shrink: 0;
    }

    .site-nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
    }

    .site-nav li {
      margin: 0 8px;
    }

    .site-nav a {
      color: #ffd685;
      font-family: "Fascinate Inline", system-ui;
      font-weight: 400;
      font-style: normal;
    }

    .separator {
      color: #ffd685;
      margin: 0 5px;
    }

.content-box {
  background-color: white;
  border: 4px solid #b35b00;
  border-radius: 20px;
  width: 98%;
  max-width: 1500px;
  height: 100%;
  margin: 20px auto;
  padding: 30px;
  text-align: left;
  overflow-y: auto;
  flex: 1;
}


.cantora-one-regular {
  font-family: "Cantora One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.content-box p {
  margin: 15px 0; 
}

.content-box img {
  display: block;
  margin: 20px auto 0 auto; 
  max-width: 100%; 
}

    .site-footer {
      font-size: 12px;
      text-align: center;
      padding: 5px 0;
      margin-top: 20px;
    }

    /* FAQ styles */
    .faq-category {
      font-family: 'Cantora One', sans-serif;
      font-size: 20px;
      font-weight: bold;
      margin: 20px 0 10px 0;
    }

    .faq-item {
      font-family: 'Cantora One', sans-serif;
      margin-bottom: 15px;
      border-bottom: 1px solid #b35b00;
      padding-bottom: 5px;
    }

    .faq-question-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 10px 0;
    }

    .faq-question {
      font-family: 'Cantora One', sans-serif;
      font-weight: bold;
      flex: 1;
    }

    .faq-icon {
      transition: transform 0.3s ease;
      font-weight: bold;
      margin-left: 10px;
      color: #a86014;
    }

    .faq-answer {
      font-family: 'Cantora One', sans-serif;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding-left: 10px;
      margin-top: 5px;
    }



    /* MOBILE styles */
    @media (max-width: 768px) {
  body {
    font-family: 'Cantora One', sans-serif;
    background-color: #fbe595;
  }

  .site-header {
    flex-direction: column; /* stack logo above nav */
    gap: 10px;
  }

  .shiba-logo {
    max-height: 70px;
  }

  .site-nav ul {
    flex-direction: row;   /* keep nav links in one row */
    flex-wrap: wrap;       /* wrap to next line if too tight */
    font-size: 14px !important;       /* smaller font on mobile */
    gap: 6px;
  }

  .site-nav li {
    margin: 0;
  }

  .separator {
    display: none;
  }
}

/* ✅ For phones (≤ 480px wide) */
@media (max-width: 480px) {
  .content-box {
    font-size: 14px;
    padding: 15px;
  }

  .faq-category {
    font-size: 18px;
  }

  .faq-question {
    font-size: 14px;
  }
}