body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.navbar {
  background-color: #23272a;
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar .nav-links li a:hover {
  color: #7289da;
}

.main-header {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #7289da;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #5b6eae;
}

.comandos {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comandos h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.comandos section {
  margin-bottom: 2rem;
}

.comandos h2 {
  margin-bottom: 0.5rem;
  color: #7289da;
}

.comandos ul {
  list-style: none;
  padding-left: 1rem;
}

.comandos li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.terms {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  line-height: 1.6;
}

.terms h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #333;
}

.terms-section {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.terms-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.terms-section ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 0;
  font-size: 1.1rem;
  color: #444;
}

.terms-section ul li {
  margin-bottom: 0.6rem;
}

.privacy {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  line-height: 1.6;
}

.privacy h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: #333;
}

.privacy-section {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.privacy-section h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.privacy-section ul {
  list-style: disc inside;
  margin-bottom: 1rem;
  padding-left: 0;
  font-size: 1.1rem;
  color: #444;
}

.privacy-section ul li {
  margin-bottom: 0.6rem;
}

.privacy-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
