/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'PT Sans', sans-serif;
}

.clearfix {
  clear: both;
  margin-bottom: 10px;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

header {
  background-color: white;
  color: #004ea7;
  height: 60px; /* Adjust the height as desired */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adjust the shadow effect */
}

.logo {
  height: 40px; /* Adjust the height to match the header height */
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* Adjust the height of the logo */
  width: auto; /* Let the width adjust proportionally */
}

.menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center; /* Adjust the menu alignment to the right */
  font-size:18px;
  text-transform:uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.menu-icon {
  display: none;
}

.menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.menu ul li {
  margin-left: 15px;
}

.menu ul li a {
  color: #000;
  text-decoration: none;
}

header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)); /* Adjust the gradient color */
}



.content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex: 1;
}

.left-column {
  width: 200px;
}

.left-column p {
  margin-bottom: 10px; /* Adjust the margin bottom as needed */
}

.left-column .left-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.left-column .left-links li {
  margin-bottom: 5px; /* Adjust the space between each link */
}

.left-column .left-links li a {
  color: #1d9bf0; /* Blue color */
  text-decoration: none;
}

.left-column .left-links li a:hover {
  text-decoration: underline;
}

.main-column {
  flex: 1;
  padding-left: 20px;
}

.main-column a {
  color: #1d9bf0; /* Bright blue color */
  text-decoration: none;
}

.main-column a:hover {
  text-decoration: underline;
}

.content-box {
  margin: 5px 0;
}

.content-box p {
  padding-bottom: 1em;
}

h1 {
  color: #000;
  margin-bottom: 10px;
}

h2 {
  color: #004ea7;
  margin-bottom: 10px;
}

footer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
  margin-top: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-left,
.footer-right {
  width: 50%;
  float: left;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 10px; /* Adjust the margin as needed */
}

.footer-links li {
  display: block;
}

.footer-links li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: #888888;
}

/* Content Boxes */

/* Full width */

.content-box-highlight {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: linear-gradient(#fbfbfb, #efefef);
  padding: 20px;
}

.content-box-highlight p {
  margin-bottom: 10px;
}

.content-box-highlight h3 {
  color: #004ea7;
  margin-bottom: 15px;
}

/* Styles for the image */
.content-box-highlight img {
  float: left; /* Floats the image to the left */
  margin-right: 10px; /* Adds a 10px margin to the right side of the image */
  margin-bottom: 10px; /* Margin at the bottom for spacing */
}

/* If you want to clear the float after the content box so it doesn't affect other elements */
.content-box-highlight::after {
  content: "";
  display: table;
  clear: both;
}


/* Small boxes */

.content-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}


.content-box-small {
  flex: 1 0 calc(15% - 5px); /* Adjust the width and spacing as needed */
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  margin-right: 5px; /* Add margin-right for spacing */
}

.content-box-small:last-child {
  margin-right: 0; /* Remove margin-right for the last box */
}

.content-box-small:hover {
  background-color: #f1f1f1;
}

.content-box-small h3 {
  margin-bottom: 10px;
  color:#004ea7;
}




/* Media Queries */
@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: stretch;
  }

  .left-column {
    width: 100%;
    order: 2;
    margin-top: 20px;
    padding-left: 0;
  }

  .main-column {
    width: 100%;
    order: 1;
    padding-left: 0;
	margin:0 auto 0;
  }

@media screen and (max-width: 768px) {
  /* Other existing styles for smaller screen widths */

  .menu-icon {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #000000; /* Change the color to black */
    order: 3;
    margin-left: auto;
	margin-top:5px;
  }
}

.menu {
  display: none;
  flex-direction: column;
  background-color: white; /* Change the background color to white */
  padding: 40px;
  position: relative;
  order: 2;
}

  .menu.show {
    display: flex;
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 1;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu ul li {
    margin-left: 0;
    margin-bottom: 10px;
  }

.menu ul li a {
  color: black; /* Change the link text color to black */
  text-decoration: none;
}

  .menu-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #000;
  }
}
/* Mobile link */

.mobile-link {
  color: #007bff; /* Blue color */
  text-decoration: none;
}

.mobile-link:hover {
  text-decoration: underline;
}


/* Styling Images */
.content-box img {
  float: left;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
.left-content-box1 {
    max-width: 48%;
	float:left;
	margin-right:5px;
	min-width:190px;
  }
 .left-content-box2 {
    max-width: 48%;
	float:left;
  } 
}

/* Form */

/* General Form Styles */
form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* spacing between the input field and the button */
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px; /* gives rounded corners to the form */
    max-width: 350px;
    margin: 20px auto; /* centers the form on the page */
}

/* Styles for input fields */
form input[type="text"] {
    flex-grow: 2; /* makes the input take more space compared to the button */
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px; /* rounded corners for the input field */
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

form input[type="text"]:focus {
    border-color: #004ea7; /* change border color when input is focused */
}

/* Styles for the submit button */
form input[type="submit"] {
    padding: 8px 20px;
    border: none;
    background-color: #004ea7; /* background color of the button */
    color: white; /* text color of the button */
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px; /* rounded corners for the button */
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #0350ee; /* slightly darker blue on hover */
}

/* Form Container Styles */
.form-container {
    clear: both; /* Clear floated elements */
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;  /* For rounded corner consistency */
}

/* Table Headers */
th, td {
    padding: 10px 20px;
    border-bottom: 2px solid #f2f2f2;
}

th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

/* Table Rows */
tr:hover {
    background-color: #f8f8f8;
}

/* Alternate Row Colors (optional) */
tr:nth-child(even) {
    background-color: #fafafa;
}

/* If you want a rounded-corner table */
.table-container {
    border-radius: 5px;
    overflow: hidden;  /* Ensures the table corners align with the container's corners */
}


