* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f2ead5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 160px;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
.btn-green {
  background-color: #4caf50;
  color: white;
  border-radius: 5px;
}
.btn-outline {
  background: transparent;
  color: #4caf50;
  border: 2px solid #4caf50;
  border-radius: 5px;
}
.hero {
  background: url('Rectangle 1.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 50px;
  text-align: center;
}
.hero-text h1 {
  font-size: 2.5rem;
}
.green {
  color: #4caf50;
}
.section {
  padding: 50px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  nav a {
    margin: 10px 0;
  }
}
