/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  background-color:#121212;
  color: #f0f0f0;
  overflow-x: clip;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* NAVBAR CONTAINER */
.navbar {
  width: 100%;
  height: auto;
  padding: 30px 60px 0 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  background: transparent;
}

/* LOGO */
.logo img,
.logo {
  height: 220px;
  width: auto;
  display: block;
  transition: height 0.3s, width 0.3s;
}

/* Responsive logo for 900px */
@media (max-width: 900px) {
  .navbar {
    padding: 20px 20px 0 20px;
  }

  .logo img,
  .logo {
    height: 140px;
  }
}

/* Responsive logo for 600px */
@media (max-width: 600px) {
  .navbar {
    padding: 16px 12px 0 12px;
  }

  .logo img,
  .logo {
    height: 120px;
    max-width: 140px;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
    z-index: 10;
  }
}

/* Responsive logo for 300px */
@media (max-width: 300px) {
  .navbar {
    padding: 8px 2px 0 2px;
  }

  .logo img,
  .logo {
    height: 60px;
    max-width: 70px;
    top: 8px;
    left: 8px;
  }
}

/* == TERMS SECTION == */
.terms-section {
  background-color: #121212;
  padding: 80px 20px;
  color: #f0f0f0;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}

.terms-section h1 {
  font-size: 3.5rem;
  color: #91f9ba;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: #000000 0px 0px 10px, #000000 0px 0px 20px, #000000 0px 0px 30px;
}

.terms-section p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 15px;
}

.terms-section h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: #000000 0px 0px 5px, #000000 0px 0px 10px;
}

.terms-section ol {
  padding-left: 20px;
}

.terms-section ol li {
  margin-bottom: 20px;
}

.terms-section a {
  color: #91f9ba;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-section a:hover {
  color: #00dab3;
}

  @media (max-width: 900px) {
    .terms-section {
      padding: 32px 12px 16px 12px;
      max-width: 98vw;
    }
    .terms-section h1 {
      font-size: 2.75rem;
      margin-bottom: 12px;
      padding: 0 10px;
    }
    .terms-section h2 {
      font-size: 1.2rem;
      margin-top: 16px;
      margin-bottom: 8px;
      padding: 0 10px;
    }
    .terms-section p {
      font-size: 1rem;
      margin-bottom: 10px;
      padding: 0 10px;
    }
    .terms-section ol {
      padding-left: 10px;
    }
    .terms-section ol li {
      margin-bottom: 12px;
    }
  }

  @media (max-width: 600px) {
    .terms-section {
      padding: 140px 28px 24px 28px;
      max-width: 98vw;
    }
    .terms-section h1 {
      font-size: 2rem;
      margin-bottom: 8px;
      padding: 0 4px;
    }
    .terms-section h2 {
      font-size: 1rem;
      margin-top: 10px;
      margin-bottom: 6px;
      padding: 0 4px;
    }
    .terms-section p {
      font-size: 0.95rem;
      margin-bottom: 6px;
      padding: 0 4px;
    }
    .terms-section ol {
      padding-left: 4px;
    }
    .terms-section ol li {
      margin-bottom: 8px;
    }
  }

  @media (max-width: 300px) {
    .terms-section {
      padding: 70px 20px 12px 20px;
      max-width: 98vw;
    }
    .terms-section h1 {
      font-size: 2rem;
      margin-bottom: 8px;
      padding: 0 4px;
    }
    .terms-section h2 {
      font-size: 1rem;
      margin-top: 10px;
      margin-bottom: 6px;
      padding: 0 4px;
    }
    .terms-section p {
      font-size: 0.95rem;
      margin-bottom: 6px;
      padding: 0 4px;
    }
    .terms-section ol {
      padding-left: 4px;
    }
    .terms-section ol li {
      margin-bottom: 8px;
    }
  }