* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, Arial, sans-serif; line-height: 1.6; color: #222; }

.wrap { max-width: 1000px; margin: 0 auto; padding: 20px; }

.hero {
  background: #f4f6f8;
  padding: 60px 0;
  text-align: center;
}
.hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 25px;
}
.hero-image2 img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 25px;
}
h1 { font-size: 36px; margin-bottom: 10px; }
h2 { margin-top: 40px; font-size: 24px; }

.cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background: #1f2933;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #1f2933;
  color: #1f2933;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  padding-left: 18px;
}

.footer {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}
