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

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

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

main {
  flex: 1;
  padding-top: 120px;
}

.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 */
.privacy-policy-container {
  flex: 1;
  padding: 120px 20px;
}

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

/* Body Paragraph */
.pppara2 {
  font-size: 24px;
  padding-top: 10px;
  width: 60%;
  margin: 0 auto; /* This centers block elements horizontally */
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;
  text-align: center; /* Optional: centers the text inside */
}

.pppara3 {
  font-size: 24px;
  padding-top: 10px;
  width: 60%;
  margin: 0 auto; /* This centers block elements horizontally */
  font-weight: normal;
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;
  text-align: center; /* Optional: centers the text inside */
}

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

@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 */
  .pppara1,
  .pppara2,
  .pppara3 {
    font-size: 80%;
    padding: 0 15px;
    padding-bottom: 10px;
  }
}
