html,body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  z-index: 100;
  background-color: rgba(125, 174, 147, 0.4);
  backdrop-filter: blur(10px);
}

img.logo-image {
  width: 200px;
  height: auto;
  max-height: 50px;
}

img.team-image {
  width: auto;
  height: auto;
  max-height: 200px;
}

.nav .menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

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

header.hero {
  position: relative;
  height: 90vh;
  background: url('/assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #a15c5c;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
}

.section {
  padding: 80px 20px;
  max-width: 90%;
  margin: auto;
}



.section-team {
  padding: 80px 20px;
  background: url('/assets/images/hero.jpg') center/cover no-repeat;
  max-width: 1000%;
  margin: auto;
  text-align: center;
}

.image-card-team {
  max-width: 200px;
  max-height: 200px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.section.alt {
  background: #f4f4f4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

.contact-form {
  display: grid;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #a15c5c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer.footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
