h1 {                      
  color: rgb(24, 98, 176);          
  text-align: center;  
}
h2 {
    color:rgb(24, 98, 176);
}
html {
  background-color: rgb(119, 173, 205);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background: rgb(119, 173, 205);
  color: #333;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}


header {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

header img {
  width: 100vw;
  max-height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

main section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px 25px;
  margin-bottom: 25px;
}

h2 {
  margin-bottom: 15px;
  color: #005f73;
  border-bottom: 2px solid #0a9396;
  padding-bottom: 8px;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

a {
  color: #0a9396;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}
