** {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
}

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1524594154908-edd9d24c4a0d') center/cover;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero h1 {
  font-size: 40px;
  background: #005F02;
  
  padding: 10px 20px;
}

/* CONTACT SECTION */
.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  height: 120px;
}

.contact-form button {
  background: #ff4d00;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e03e00;
}

/* INFO BOXES */
.contact-info {
  flex: 1;
  min-width: 250px;
}

.info-box {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* MAP */
.map {
  padding: 20px 10%;
}

/* FOOTER */
footer {
  background: #005F02;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}