* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: linear-gradient(135deg, #ffd966, #ffb703);
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.intro {
  max-width: 700px;
  margin: auto;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #f9f9f9;
}

.center {
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

h3 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

blockquote {
  font-size: 1.4rem;
  font-style: italic;
  margin: 20px 0;
  color: #555;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: "✔ ";
  color: #ffb703;
  font-weight: bold;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
