/* Reset default margins and padding for consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles for body: modern sans-serif stack, smooth scrolling, and background */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for high contrast */
  background-color: #f8fafc; /* Light neutral background */
  scroll-behavior: smooth;
}

a {
  color: #4e3114
}

/* Wide margins with centered content */
main {
  max-width: 1200px; /* Constrain content width for readability */
  margin: 0 auto; /* Center content */
  padding: 2rem 4rem; /* Wide lateral padding */
}

/* Header: sticky, bold, with subtle shadow */
header {
  background-color: #ffffff;
  background-image: url(hbg.jpg);
  background-size: 50%;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-bottom: 1px solid #e2e8f0; /* Subtle border */
  padding: 1.5rem 4rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Soft shadow */
  display: flex;
  justify-content: space-between;
}

header h1 {
  font-size: 1.5rem;
  text-align: left;
  color: #ffffff;
  font-weight: bold;
  margin: 0;
}

header nav {
  font-weight: bold;
}

/* Footer: minimal, centered, with padding */
footer {
  background-color: #ffffff;
  color: #ff0000;
  text-align: center;
  padding: 2rem 4rem;
  margin-top: 3rem;
}

/* Section: card-like with rounded corners and padding */
section {
  background-color: #ffffff;
/*  border-radius: 12px; /* Modern rounded corners */
  padding: 2rem;
  margin-bottom: 1rem; /* Space between sections */
/*  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle card shadow */
}

/* Headings: bold, modern, with generous spacing */
h1 {
  font-size: 3rem; /* Large but not overwhelming */
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #0f172a; /* Deep blue-gray for emphasis */
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1e293b;
}

/* Paragraphs: readable with balanced spacing */
p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #374151; /* Slightly lighter for body text */
}

/* Lists: clean, with modern bullet styling */
ul {
/*  list-style: none; /* Remove default bullets */
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}


li {
  padding-left: 1.5rem;
/*  position: relative; */
  margin-bottom: 0.5rem;
}

/*li::before {
/*  content: "•"; /* Custom bullet */
/*  color: #3b82f6; /* Vibrant blue accent */
/*  position: absolute;
/*  left: 0;
/*  font-size: 1.2rem;
/*}
*/

/* Focus states for accessibility */
a:focus, button:focus {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

hr {
  width: 50%;
  margin: 1rem auto;
}

/* Responsive design: adjust padding for smaller screens */
@media (max-width: 768px) {
  main {
    padding: 1.5rem 2rem; /* Reduced padding */
  }
  header, footer {
    padding: 1rem 2rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
