body {
  background: url('./images/background.png') repeat; 
  background-position: top left; 
  background-size: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

header {
  text-align: center;
  background-color: #2ec4b6;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

#accessibility-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin-left: 20px; 
}

.accessibility-icon {
  width: 30px;
  height: 30px;
}

.accessibility-menu {
  position: fixed;
  top: 50px;
  right: 10px;
  width: 200px;
  background-color: #2ec4b6;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  display: none; 
  z-index: 1000;
  color: white;
}

.accessibility-menu h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffde59;
}

.accessibility-menu button {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  font-size: 14px;
  background-color: #cbf3f0;
  color: #002D42;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.accessibility-menu button:hover {
  background-color: #ffc372;
}


.logo {
  max-width: 100px;
  padding: 5px;
}

nav {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  background-color: #cbf3f0;
  padding: 10px 20px; 
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  
}

.nav-links {
  display: flex; 
  justify-content: center; 
  flex: 1;
  list-style: none; 
  margin: 0; 
  padding: 0; 
}

nav li {
  margin: 0 15px; 
}

nav a {
  font-size: 20px;
  color: #002D42;
  text-decoration: none; 
  font-family: Arial, sans-serif;
  font-weight: bold;
  padding: 10px 20px;
}

nav a:hover {
  color: #ff9f1c;
  text-decoration: underline;
}

.hero {
  position: relative;
  background: url('./images/heroimg.png') no-repeat center center/cover;
  height: 400px;
  color: #002D42; 
}

.hero-overlay {
  position: absolute; 
  left: 20px; 
  top: 50%; 
  transform: translateY(-50%); 
  text-align: left; 
}

.hero-overlay h1 {
  margin: 0 0 10px;
  font-size: 56px; 
  color: white;
}

.hero-overlay p {
  margin: 0 0 20px;
  font-size: 20px; 
  font-weight: bold;
  color: #cbf3f0; 
}

.hero-button {
  display: inline-block; 
  background-color: #2ec4b6; 
  color: white; 
  text-decoration: none;
  padding: 10px 20px; 
  border-radius: 5px; 
  font-weight: bold;
  font-size: 16px;
}

.hero-button:hover {
  background-color: #ff9f1c; 
  color: #002D42; 
}

.hero {
  position: relative;
}


.hero-overlay-wd {
  position: absolute; 
  left: 50px; 
  top: 50%; 
  transform: translateY(-50%);
  text-align: left; 
}

.hero-overlay-wd h1 {
  margin: 0 0 10px; 
  font-size: 56px; 
  color: white; 
}

.hero-overlay-wd p {
  margin: 0 0 20px; 
  font-size: 16px; 
  font-weight: bold;
  color: #cbf3f0; 
}

.section-container {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 4px;
  margin: 0 0 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    background-color: #2ec4b6; 
    padding: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffc372; 
	text-align: left;
}

.footer-column p,
.footer-column ul {
    margin: 5px 0;
    color: #002D42; 
	font-size: 14px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 20px;

}

.footer-column li {
    margin-bottom: 5px;
}

footer a {
    color: #002D42; 
    font-weight: bold;
    text-decoration: none;
    padding: 5px;
}

footer a:hover {
    color: #ff9f1c; 
    text-decoration: underline;
}

.footer-copyright {
    border-top: 1px solid #002D42;
    padding-top: 10px;
    color: #002D42;
    font-size: 14px;
}

