/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Top Bar */
.top-bar {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 14px;
}

/* Navbar */
.navbar {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e53935;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.navbar .nav-links a:hover,
.navbar .nav-links .active {
  color: #e53935;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .highlight {
  color: #e53935;
  font-weight: bold;
}

/* Privacy Content Section */
.privacy-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #e53935;
}

.privacy-content p,
.privacy-content ul {
  margin-top: 1rem;
  font-size: 1rem;
  color: #444;
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.update-note {
  margin-top: 2rem;
  font-style: italic;
  color: #777;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 2rem;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  margin: 1rem;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-col ul li a:hover {
  color: #fbc02d;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .privacy-content {
    padding: 1rem;
  }
}
