
    /*content*/

    .container h1{
        margin-top: 20px;
        margin-bottom: 30px;
        font-weight: bold;
        color: #00008B;
    }



    .accordion {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
  }

  .accordion .contentBox {
      position: relative;
      margin: auto;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      overflow: hidden;
  }

  .accordion .contentBox .label {
      position: relative;
      padding: 10px;
      background-color: #1338BE;
      color: white;
      font-weight: bold;
      cursor: pointer;
      font-size: 20px;
  }

  .accordion .contentBox .label::before {
      content: '+';
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      font-size: 25px;
  }

  .accordion .contentBox .content {
      background: #E8E8E8;
      height: 0;
      overflow: hidden;
      transition: height 0.5s ease-out, padding 0.5s ease-out;
      font-weight: bold;
  }

  .accordion .contentBox.active .label::before {
      content: '-';
  }

  .accordion .contentBox.active .content {
      height: auto;
      padding: 10px;
  }

    .tour-category {
        align-items: center;
        background-color: #0A66C2;
        border: 0;
        margin: 1px;
        border-radius: 100px;
        box-sizing: border-box;
        color: #ffffff;
        cursor: pointer;
        display: inline-flex;
        font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
        font-size: 16px;
        font-weight: 600;
        justify-content: center;
        line-height: 20px;
        max-width: 480px;
        min-height: 40px;
        min-width: 0px;
        overflow: hidden;
        padding: 0px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        touch-action: manipulation;
        transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        user-select: none;
        -webkit-user-select: none;
        vertical-align: middle;
      }
      
      .tour-category:hover,
      .tour-category:focus { 
        background-color: #16437E;
        color: #ffffff;
      }
      
      .tour-category:active {
        background: #09223b;
        color: rgb(255, 255, 255, .7);
      }
      
      .tour-category:disabled { 
        cursor: not-allowed;
        background: rgba(0, 0, 0, .08);
        color: rgba(0, 0, 0, .3);
      }

      .categoryBox{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 30px;
      }
