/* Color Palette */
:root {
  --primary-color: #131924; /* Navy Blue */
  --secondary-color: #6F777B; /* Steel Gray */
  --accent-color: #005EA5; /* Electric Blue */
  --background-color: #F8F8F8; /* Light Gray */
  --highlight-color: #FFBF47; /* Safety Yellow */
  --text-color: #0B0C0C; /* Navy Blue */
  --link-color: #005EA5;
  --link-hover-color: #FFBF47;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  background-image: url('bgys.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER STYLES */
header {
  background-color: var(--primary-color);
  padding: 20px 0;
  color: var(--highlight-color);
}

/* Flex layout for header content */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Title and nav container */
.header-text {
  flex: 1 1 60%;
  min-width: 280px;
}

/* Site title */
header h1 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--highlight-color);
}

/* Nav styles */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0;
}

nav li {
  margin: 5px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

nav a:hover {
  color: var(--highlight-color);
}

/* Header image */
.header-image {
  flex: 1 1 35%;
  min-width: 200px;
  max-width: 300px;
  height: 150px;
  background-image: url('101.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  margin-left: auto; /* pushes it to far right in flex layout */
}

/* MAIN CONTENT */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 40px;
}

h2 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  background-color: var(--highlight-color);
  color: var(--primary-color);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: var(--accent-color);
  color: white;
}

/* FOOTER */
footer {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .header-image {
    width: 100%;
    max-width: 100%;
    height: 120px;
    background-position: center center;
    background-size: contain;
    margin: 10px 0;
  }
}

  .header-image {
    width: 100%;
    height: 120px;
    background-position: center;
    background-size: contain;
    margin-top: 10px;
  }

  header h1 {
    font-size: 1.4rem;
    text-align: left;
  }

  nav ul {
    justify-content: flex-start;
    gap: 10px;
  }

  nav a {
    font-size: 0.95rem;
  }
}
  


  table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    table, th, td {
      border: 1px solid #ccc;
    }
    th, td {
      padding: 8px;
      text-align: left;
    }
    ul {
      list-style: disc inside;
    }
    .download-button {
      display: inline-block;
      padding: 10px 15px;
      background-color: #006699;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }
    .download-button:hover {
      background-color: #004d66;
    }