	/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #0F566F;
  color: #fff;
  padding: 20px 0;
}

.logo img {
  width: 35%;
}

.menu {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu li {
  margin-left: 10px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

section {
  padding: 80px 0;
}

section h2 {
  margin-bottom: 20px;
}



footer {
  background-color: #0D4D50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

form button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .container {
    padding: 0 10px;
  }
}
	


header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo {
  align-self: flex-start;
  width: 40%;
}

.title-tagline {
  text-align: center;
  flex-grow: 1;
}

.tagline {
  position: relative;
  overflow: hidden;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: linear-gradient(to right, transparent 0%, #fff 50%, transparent 100%);
 
}

