


    body {
      margin: 0;
      // font-family: Arial, sans-serif;
      font-family: vt323, sans-serif;
      //background-color: #ffcd00;
      color: #2c3e50;
      font-size:1.5em;
      background: #fff;
    }

    .navbar {
      background-color: #2c3e50;
      padding: 10px 30px;
      color: white;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
      font-weight: normal;
    }

    .container {
      height: calc(100vh - 70px);
      display: flex;
      flex-direction: column;
      //justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      margin-top: 100px;
    }

    h1 {
      font-size: 2.5em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    p {
      font-size: 1.2em;
      //max-width: 650px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .button {
      background-color: #2c3e50;
      color: white;
      padding: 14px 30px;
      margin: 10px;
      font-size: 16px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .button:hover {
      background-color: #2c3e50;
      color: #ffcd00;
    }

    .price-tag {
      font-size: 1em;
      margin-top: 8px;
      color: #444;
    }

    .fa-icon {
      margin-right: 8px;
    }

footer a:hover {
  color: #ffffff;
  text-decoration: none;
}




  .faq-question {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 1.4em;
    padding: 15px;
    border-bottom: 1px solid #ccc;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-family: cocomatpro, sans-recif;
    font-size: 25px;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5em;
    transition: transform 0.2s;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    background: #2c3e50;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    font-size: 1.2em;
    line-height: 1.6;
    margin:10px;
  }

  .faq-answer.open {
    padding: 15px;
  }

.how-it-works {
  text-align: center;
  padding: 50px 20px;
  background: #fff6da;
}

.how-it-works h2 {
  font-family: vt323, monospace;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.step-box {
  flex: 1 1 280px;
  background: #ffcd00;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  font-family: pixel, sans-serif;
}

.step-box h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.step-box p {
  font-size: 1.4em;
  color: #444;
  font-family:vt323;
}

.step-box:hover {
  transform: scale(1.03);
}

/* Carousel */

.wizard-carousel {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  //background: #fff;
  //box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.slides {
  display: flex;
  animation: scrollWizard 7s linear infinite;
}

.slides img {
  width: 100%;
  //height: 400px;
  object-fit: contain;
  flex-shrink: 0;
  //padding: 10px;
}

@keyframes scrollWizard {
  0%    { transform: translateX(0%); }
  20%   { transform: translateX(0%); }

  30%   { transform: translateX(-100%); }
  50%   { transform: translateX(-100%); }

  60%   { transform: translateX(-200%); }
  80%   { transform: translateX(-200%); }

  100%  { transform: translateX(0%); }
}

.cta-join {
  font-family: 'pixel', sans-serif;
  font-size: 24px;
  background: linear-gradient(to right, #5865F2, #00aced);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s;
}

.cta-join:hover {
  background: linear-gradient(to right, #4854d6, #0089b5);
  transform: scale(1.04);
}

.cta-join i {
  font-size: 28px;
  vertical-align: middle;
}
