body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: 70px;
  background-color: #333;
  /* Dark gray background */
  color: #fff;
  /* White text */
}

header {
  background-color: #005555;
  /* Teal header background */
  color: #fff;
  padding: 20px;
  text-align: center;
}

main {
  padding: 20px;
}

h1,
h2 {
  color: #ffffff;
}

section {
  margin-bottom: 40px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

a {
  color: #4999d4;
  /* Teal link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #005555;
  /* Dark teal on hover */
}

.btn {
  display: inline-block;
  background-color: #4999d4;
  /* Teal button background */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005555;
  /* Dark teal on button hover */
  color: #fff;
}

footer {
  background-color: #4999d4;
  /* Teal footer background */
  color: #fff;
  padding: 20px;
  text-align: center;
}

.navbar {
  background-color: #005555;
  /* Teal navbar background */
  color: #4999d4;
  /* White text */
  padding: 20px;
  padding-right: 70px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  /* Navbar sticks to the top */
  top: 0;
  /* Aligns navbar to the top */
  width: 100%;
  /* Makes navbar full width */
  z-index: 1000;
  /* Ensures navbar appears on top of other content */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
  margin-right: 20px;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #26A69A;
  /* Dark teal on hover */
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4999d4;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4999d4;
}