@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General */
body {
  font-family: 'Poppins', sans-serif;
  background: #f0f9ff;
  margin: 0;
  line-height: 1.6;
  color: #1e293b;
}

/* Navbar */
.navbar-custom {
  background: #ffffffd9;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
  height: 40px;
  margin-right: 8px;
}

.navbar-nav .nav-link {
  color: #1e293b;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 20px;
  padding: 8px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #76f1d5, #71e8f0);
  color: #fff;
}

/* Terms Section */
.policy-main {
  background: linear-gradient(135deg, #e0f7fa, #f0f9ff);
  padding: 120px 20px 60px;
  min-height: 100vh;
}

.policy-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.policy-container h1 {
  font-size: 32px;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 10px;
}

.policy-container h2 {
  font-size: 22px;
  color: #4c1d95;
  margin-top: 30px;
  margin-bottom: 12px;
}

.policy-container p {
  font-size: 16px;
  color: #374151;
}

.policy-container a {
  color: #10b981;
  text-decoration: none;
}
.policy-container a:hover {
  text-decoration: underline;
}





/* Responsive */
@media (max-width: 768px) {
  .policy-container {
    padding: 30px 20px;
  }
  .policy-accept {
    flex-direction: column;
    align-items: center;
  }
  .policy-accept button {
    width: 100%;
  }
}
