body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  color: #333;
}

.navbar {
  background-color: #1a2634;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand .navbar-item {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.navbar-end {
  display: flex;
  gap: 15px;
}

.navbar-end .navbar-item {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s;
}

.navbar-end .navbar-item:hover {
  color: #7289da;
}

.navbar-end .navbar-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #7289da;
  transition: width 0.3s, left 0.3s;
}

.navbar-end .navbar-item:hover::after {
  width: 100%;
  left: 0;
}

.privacy-section {
  padding: 50px 20px;
  background-color: #fff;
  max-width: 900px;
  margin: 50px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.title {
  font-size: 2rem;
  color: #1a2634;
  margin-bottom: 20px;
  text-align: center;
}

.effective-date {
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
  color: #555;
}

.privacy-content {
  display: grid;
  gap: 20px;
}

.term-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(114, 137, 218, 0.8),
    0 0 40px rgba(114, 137, 218, 0.6); /* Glow effect */
}

.term-box h2 {
  font-size: 1.5rem;
  color: #7289da;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.term-box:hover h2 {
  color: #1a2634;
}

.term-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #555;
}

.footer {
  background-color: #1a2634;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  margin-top: 50px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Adjustments for mobile screens */
@media (max-width: 768px) {
  .privacy-section {
    padding: 30px 15px;
    margin: 20px auto;
  }

  .title {
    font-size: 1.5rem;
  }

  .term-box h2 {
    font-size: 1.3rem;
  }

  .term-box p {
    font-size: 0.95rem;
  }
}
