*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.nav-brand-link {
  text-decoration: none;
  color: inherit;
  display: inline;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #141414;
  border-bottom: 2px solid #009ee1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px; /* Reduce padding a bit for mobile */
  box-sizing: border-box;
  z-index: 999;
  flex-wrap: wrap; /* allow items to wrap on mobile */
}

html {
  scroll-behavior: smooth;
}

/* Logo section */
.nav-logo {
  display: flex;
  align-items: center;
  color: #009ee1;
  font-size: 36px;
  font-weight: bold;
}

.nav-brand-text {
  padding-left: 5px;
}

.nav-logo-img {
  width: 40px; /* control size directly */
  height: auto;
  margin-right: 10px; /* spacing between logo and text */
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 50px;
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #009ee1;
}

.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1f1f1f; /* dark background */
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Privacy Policy Page Container */
.legal-container {
  flex: 1;
  padding: 30px 20px;
}

/* Heading */
.legalpara1 {
  font-size: 36px;
  font-family: 'Poppins',sans-serif;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
}

/* Body Paragraph */
.legalpara2,
.legalpara3,
.legalpara4,
.legalpara5,
.legalpara6,
.legalpara7,
.legalpara8,
.legalpara9,
.legalpara10,
.legalpara11,
.legalpara12 {
  font-size: 24px;
  padding-top: 10px;
  width: 80%;
  margin: 0 auto; /* This centers block elements horizontally */
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;
  text-align: left; /* Optional: centers the text inside */
}

.legalpara13 {
  font-size: 16px;
  font-style: italic;
  padding-top: 10px;
  width: 80%;
  margin: 0 auto;
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;
  text-align: left;
}


@media (max-width: 600px) {
   .burger {
    display: block;
    color: white
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    right: 20px;
    background-color: #141414;
    border: 2px solid #009ee1;
    padding: 10px;
    z-index: 1000;
  }

  .nav-brand-text {
    font-size: 60%;
  }

  .nav-logo-img {
    size: 60%;
  }

  .nav-links a {
    font-size: 1rem;
    text-align: left;
    margin: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  /* Paragraphs inside body sections */
  .legalpara2,
  .legalpara3,
  .legalpara4,
  .legalpara5,
  .legalpara6,
  .legalpara7,
  .legalpara8,
  .legalpara9,
  .legalpara10,
  .legalpara11,
  .legalpara12 {
    font-size: 80%;
    padding: 0 15px;
    padding-bottom: 10px;
  }
}

/* Footer at the very bottom */
footer {
  background-color: #1e1e1e;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}