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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #050814, #071c2f);
  color: white;
}

/* Navbar */
header {
  background: #050814;
  padding: 15px 8%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
}

.logo img {
  width: 40px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #ffd23f;
}

.login-btn {
  background: #ffd23f;
  padding: 6px 16px;
  border-radius: 20px;
  color: #000 !important;
  font-weight: 600;
}

.login-btn:hover {
  background: #ffbf00;
}

/* Policy Section */
.policy-section {
  padding: 60px 10%;
  max-width: 1100px;
  margin: auto;
}

.policy-section h1 {
  color: #ffd23f;
  margin-bottom: 20px;
}

.policy-section h2 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 20px;
  color: #4fc3ff;
}

.policy-section p {
  line-height: 1.7;
  font-size: 15px;
  opacity: 0.9;
}

hr {
  margin: 40px 0;
  border: 1px solid #1e2a3a;
}

/* Responsive */
@media (max-width: 768px) {
  nav a {
    margin-left: 15px;
    font-size: 14px;
  }
  .policy-section {
    padding: 40px 6%;
  }
}
.disclaimer-section {
  background: linear-gradient(135deg, #050814, #071c2f);
  padding: 40px 8%;
  text-align: center;
  margin-top: 40px;
  border-radius: 20px;
}

.disclaimer-section h2 {
  color: #ffd23f;
  margin-bottom: 10px;
  font-size: 22px;
}

.disclaimer-section p {
  color: #ffffff;
  font-size: 15px;
  opacity: 0.9;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}
/* Main Footer */
.main-footer {
  background: #050814;
  color: white;
  padding: 40px 8% 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-container h3 {
  color: #ffd23f;
  margin-bottom: 10px;
}

.footer-container h4 {
  color: #4fc3ff;
  margin-bottom: 10px;
}

.footer-container p,
.footer-container a {
  font-size: 14px;
  color: #ffffffcc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-container a:hover {
  color: #ffd23f;
}

.social-icons img {
  width: 26px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #ffffff99;
  border-top: 1px solid #1e2a3a;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .main-footer {
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}
