/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f5f5f5;
}

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

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 10px;
}

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

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

.hero button {
  padding: 12px 20px;
  border: none;
  background: #00a86b;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.hero button:hover {
  background: #018f5a;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* INFO */
.info ul {
  list-style: none;
}

.info li {
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #00a86b;
}

/* FAQ */
.accordion-item {
  margin-bottom: 10px;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-question:hover {
  background: #ddd;
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background: white;
}

.accordion-answer p {
  padding: 15px 0;
}

.accordion-item.active .accordion-answer {
  max-height: 200px;
}

/* CONTACT */
.contact p {
  margin-bottom: 10px;
}

.map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}