/* --- Global Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
}

/* --- Navbar --- */
.navbar {
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 0.8;
}

.menu-toggle {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* --- Header --- */
.header {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.header p {
  color: #f8f8f8;
  font-size: 1rem;
}

/* --- Main Policy Section --- */
.policy-content {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.policy-card {
  background: #000000;
  max-width: 900px;
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  color: #ffffff;
}

.policy-card h2 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.policy-card h3 {
  color: #ffd700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-card p,
.policy-card ul {
  margin-bottom: 1rem;
}

.policy-card ul {
  padding-left: 1.5rem;
}

.policy-card a {
  color: #ffd700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.policy-card a:hover {
  opacity: 0.8;
}

.policy-card blockquote {
  border-left: 4px solid #ffd700;
  padding-left: 1rem;
  color: #f8f8f8;
  font-style: italic;
  background: #000000;
}

/* --- Footer --- */
footer {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: #ffd700;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-text {
  font-size: 0.9rem;
  color: #f8f8f8;
}

.highlight {
  color: #ffd700;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .policy-card {
    padding: 1.5rem;
  }
}
