body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #180643;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  background: #ffffff;
  padding: 0px 40px 0px 40px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
}

.navbar a {
  color: rgb(4, 14, 85);
  text-decoration: none;
  margin: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.navbar a:hover {
  color: #f1c40f;
  transform: translateY(-2px);
}

.logoImage {
  height: 80px;
}

.site-footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style for dropdown button */
.dropbtn {
  color: rgb(4, 14, 85);
  text-decoration: none;
  margin: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

/* Hover effect */
.dropbtn:hover {
  color: #f1c40f;
  transform: translateY(-2px);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  z-index: 1;
  border-radius: 6px;
}

/* Dropdown links */
.dropdown-content a {
  color: rgb(4, 14, 85);
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: #f1c40f;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.privacyPageContainer h1,
.privacyPageContainer h2 {
  color: #1a73e8;
}
.privacyPageContainer {
  margin: auto;
  background: #fff;
  padding: 30px 100px 30px 100px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.termsOfServiceContainer {
  margin: auto;
  background: #fff;
  padding: 30px 100px 30px 100px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.termsOfServiceContainer h1,
.termsOfServiceContainer h2 {
  color: #1a73e8;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: rgb(4, 14, 85);
  padding: 8px 12px;
  transition: transform 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg);
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: block;
    order: 2;
  }

  .logoImage {
    height: 60px;
    order: 1;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    margin-top: 15px;
    text-align: left;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    order: 3;
    overflow: hidden;
  }

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

  .nav-links a {
    width: 100%;
    padding: 15px 20px;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    margin-left: 50px;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover {
    background-color: #f8f9fa;
    transform: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown .dropbtn {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 6px;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 12px 20px 12px 40px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
  }

  .dropdown-content a:hover {
    background: #e9ecef;
  }

  .dropdown-content a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .logoImage {
    height: 50px;
  }

  .navbar {
    padding: 12px 15px;
  }
}
