
*
{
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Header styling */
.header {
  background: #0a2342; /* deep blue */
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ffb703; /* golden highlight */
}

/* Main content */
.content {
  padding: 40px 20px;
}

.content .container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a2342;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.content section {
  margin-bottom: 25px;
}

.content h2 {
  font-size: 1.3rem;
  color: #0a2342;
  margin-bottom: 10px;
  position: relative;
}

.content h2::before {
  content: "§";
  color: #ffb703;
  margin-right: 8px;
}

.content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* Links */
.content a {
  color: #0a2342;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #0a2342;
  transition: color 0.3s, border-color 0.3s;
}

.content a:hover {
  color: #ffb703;
  border-color: #ffb703;
}

/* Footer */
.footer {
  background: #111827; /* Tailwind's bg-gray-900 */
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer a {
  color: #ffb703;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

.footer a:hover {

}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a {
    margin: 10px 0;
  }

  .content .container {
    padding: 20px;
  }

  .content h1 {
    font-size: 1.6rem;
  }
}
