body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Top bar */
.top-bar {
  background-color: #035c5e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  color: white;
  width: 150vw;           /* Full viewport width */
  position: relative;     /* Optional: can help if overlaying */
  left: 0;                /* Ensures alignment */
  margin: 0;              /* Remove any inherited margins */
  box-sizing: border-box; /* Include padding in total width */
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: white;
  margin-left: 12px;
  font-size: 14px;
}

.header {
  display: flex;
  justify-content: center; /* horizontally center the content */
  align-items: center;     /* vertically center if on same row */
  gap: 15px;               /* optional: space between logo and text */
  padding: 20px 0;
}

/* Optional styling for logo */
.logo {
  width: 60px;  /* adjust size as needed */
  height: auto;
}

/* Optional: center heading text */
.header h1 {
  font-size: 24px;
  color: #024731;
  margin: 0;
}


h2 {
    
    font-size: 20px;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #000;
  border-radius: 25px;
  overflow: hidden;
  width: 250px;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white; /* optional */
  z-index: 10;
}

.search-bar input {
  border: none;
  padding: 8px 12px;
  flex: 1;
  outline: none;
}

.search-bar button {
  background-color: #035c5e;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

