body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  background-image: url('back.jpg');
  background-size: covers;   
  background-position: covers;  
  background-repeat: no-repeat; 
}


.hero {
  background: url('dim.jpg') no-repeat center center/cover;
  color: sienna;
  padding: 60px 20px;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: ;
  margin-top: 20px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: sienna;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  background: white;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card {
  flex: 1;
  min-width: 250px;
  background: #e8f5e9;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

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

form button {
  background: #2e7d32;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
}

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