/* General Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  margin: auto;
  padding: 0 20px;
  max-width: 1280px;
  line-height: 1.6;
  color: #333;
}

/* Header Styling */
.header {
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  text-align: center;      /* Ensures text inside is centered */
  margin: 20px;           /* Adds margin around the content */
  background-color: #ffffff;
  color: #2c2f33;
  width: 100%;             /* Makes header take up full width */
  height: 200px;           /* Sets a fixed height for the header */
  box-sizing: border-box;  /* Ensures padding is included in the height */
}

/* Optional styling for heading inside the header */
.header h3 {
  font-size: 28px;
  margin: 0;
}

/* Navbar Styling */
.navbar {
  background-color: #2c2f33;
  border-radius: 5px;
  max-width: 100%;
  padding: 15px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar Links */
.navbar a {
  color: #ddd;
  display: inline-block;
  font-size: 16pt;
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 3px;
  margin-right: 10px;
}

/* Navbar Links Hover Effect */
.navbar a:hover {
  color: #ffffff;
  background-color: #3a3f47;
}

/* Active Link Styling */
.navbar a.active {
  color: #ffffff;
  background-color: #1e2125;
  font-weight: bold;
}

#contact p.details {
  margin-top: 4px; /* Reduces the space between paragraphs */
  margin-bottom: 0px; /* Reduces the space between paragraphs */
}

#contact a {
  color: #007BFF; /* Adjust link color */
  text-decoration: none; /* Removes underline */
}

#contact a:hover {
  text-decoration: underline; /* Adds underline on hover */
}

#contact h3 {
  margin-bottom: 12px; /* Slightly larger spacing below the heading */
}

#govref {
  justify-content: center;
  background-color: #ddd;
  border-radius: 5px;
  max-width: 100%;
  padding: 5px;
}

#govref p {
  margin: 10px;
  color: #777;
  font-size: 14px;
}