body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
}

header {
  background-color: #00695c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #00bfa5, #80cbc4);
  color: white;
}

.btn {
  background-color: #004d40;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.cards {
  padding: 3rem 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 1rem;
}
header {
  background-color: #00695c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.banner-text h1 {
  font-size: 2.5rem;
  color: #00bfa5;
}

.banner-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background-color: #004d40;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .banner-text {
    left: 5%;
    top: 60%;
    transform: translateY(-50%);
    max-width: 90%;
  }
  
  .banner-text h1 {
    font-size: 1.8rem;
  }
  
  .banner-text p {
    font-size: 1rem;
  }
}