* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  background: transparent;
}

.logo img {
  width: 202px;
  height: auto;
  display: block;
}

.logo img.desktop-logo {
  display: block;
}

.logo img.mobile-logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #ffffff;
  transition: 0.3s;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  transition: all 0.3s ease-in-out;
}

.mobile-btn {
  display: none !important;
}

.contact-btn,
.nav-links a.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 39px;
  padding: 10px 40px;
  border-radius: 40px;
  background: #00aae8;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.contact-btn:hover,
.nav-links a.contact-btn:hover {
  background: #0096cf;
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    height: auto;
    position: fixed;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .logo img {
    width: 170px;
  }
  .logo img.desktop-logo {
    display: none;
  }
  .logo img.mobile-logo {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
  .desktop-btn {
    display: none;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 20;
    gap: 15px;
  }
  .nav-links a {
    color: #3f3f3f;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-btn {
    display: flex !important;
    margin-top: 10px;
  }
}

/* ================= FOOTER ================= */
.footer-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 100px;
  gap: 20px;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: #ebfaff;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  max-width: 1312px;
}

.footer-links a {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #424242;
  text-decoration: none;
  padding: 10px;
  transition: 0.2s;
}

.footer-disclaimer {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #424242;
  max-width: 1312px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 20px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-disclaimer {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ================= PRIVACY PAGE SPECIFIC ================= */

.privacy-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.privacy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.privacy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
}

.privacy-hero-content h1 {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 54px;
  line-height: 73px;
  margin: 0;
}

.privacy-content-area {
  width: 100%;
  background: #f4fcff;
  display: flex;
  justify-content: center;
  padding: 60px 20px 100px;
}

.privacy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1511px;
  padding: 60px 210px;
}

.privacy-wrapper h2 {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #424242;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
}

.privacy-wrapper h2:first-child {
  margin-top: 0;
}

.privacy-wrapper p {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #3F3F3F;
  margin-bottom: 10px;
  width: 100%;
}

.privacy-wrapper ul {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #3F3F3F;
  margin-bottom: 10px;
  padding-left: 20px;
  width: 100%;
}

.privacy-wrapper ul li {
  margin-bottom: 10px;
}

.privacy-wrapper strong {
  font-weight: 700;
  color: #222222;
}

@media (max-width: 768px) {
  .privacy-hero-content h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .privacy-wrapper {
    padding: 30px 20px;
  }
  
  .privacy-wrapper h2 {
    font-size: 20px;
    line-height: 28px;
  }
  
  .privacy-wrapper p,
  .privacy-wrapper ul {
    font-size: 15px;
    line-height: 24px;
  }
}
