/* viba-legal.css */

/* Reset some default styles */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Page background and text */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d1117; /* Dark background */
  color: #ddd;         /* Light text */
  line-height: 1.6;
}

/* Main content container */
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background: #11151d; /* Dark card style */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);

  text-align: left;  /* Force left alignment (override main.css) */
}

/* Headings */
h1, h2 {
  color: #5cc9ff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid #5cc9ff;
  padding-bottom: 0.3rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

/* Paragraphs and Lists */
p, ul {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ccc;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.4rem;
}

/* Links */
a {
  color: #5cc9ff;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: #82dbff;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
    margin: 1rem;
  }
}
