/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #b99c09;
  background-color: #1f1f1f;
}

/* Top Bar */
.top-bar {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 14px;
}

/* Navbar */
.navbar {
  background-color: #0f0f0f;
  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: #f5c518;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

.navbar .nav-links a:hover,
.navbar .nav-links .active {
  color: #f5c518;
}

/* Hero Section */
.hero {
  background-color: rgb(53, 49, 49)f0f;
  padding: 3rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .highlight {
  color: #f5c518;
  font-weight: bold;
}

/* Terms Content Section */
.terms-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #454141;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.terms-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #f5c518;
}

.terms-content p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #ffffff;
}

.update-note {
  margin-top: 2rem;
  font-style: italic;
  color: #ffffff;
}

/* 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;
  }

  .terms-content {
    padding: 1rem;
  }
}
