/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #f2f2f2;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background-color: #111;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
}
.logo {
  height: 40px;
  margin-right: 20px;
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav-left, .nav-right {
  list-style: none;
  display: flex;
  gap: 15px;
}
.nav-right {
  margin-left: auto;
}
nav a {
  text-decoration: none;
  color: #f2f2f2;
  font-weight: bold;
  transition: color 0.2s;
}
nav a:hover {
  color: #00aaff;
}

/* Main content area */
.container {
  width: 100%;
  max-width: 1200px;       /* Optional: limits line length on large screens */
  padding: 0 24px;          /* Padding on left/right (mobile-friendly) */
  margin: 20px auto;        /* Center it horizontally */
  box-sizing: border-box;  /* Ensures padding doesn't affect width */
}

.container ul,
.container ol {
  padding-left: 1.5rem;   /* Indent list from the left */
  margin-bottom: 1rem;    /* Space below the list */
  margin-top: 1rem;       /* Space above the list */
  list-style-position: outside;
}

.container li {
  margin-bottom: 0.5rem;  /* Space between list items */
}

.container p {
  margin-bottom: 1.25rem; /* Adds spacing between paragraphs */
  line-height: 1.6;       /* Improves readability */
}

.container section {
  margin-bottom: 2rem;    /* Adds spacing between sections */
}

/* Better link styling for dark background */
a {
  color: #00bfff; /* Light blue – readable on dark bg */
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #66d9ff; /* Slightly brighter on hover */
  text-decoration: underline;
}

section {
  margin-bottom: 30px;
}

/* Footer styling */
.site-footer {
  background-color: #111;
  color: #777;
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  position: fixed;
  bottom: 0;
  width: 100%;
}
