body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #1a1a1a;
  color: #eee;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
}

.hero-image {
  height: 420px;
  background: url("hero.jpg") center center / contain no-repeat;
  background-color: #0f0f0f;
}

.hero-text {
  background: #111;
  color: #fff;
  padding: 25px 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.hero-text .call-button {
  margin: 12px auto;
}

.hero-text .tagline {
  font-size: 16px;
  margin-top: 8px;
}

/* ===== GENERAL ===== */
.logo {
  max-width: 260px;
  margin-bottom: 20px;
}

.tagline {
  color: #e53935;
  font-weight: bold;
  text-align: center;
  display: block;
}

/* ===== CARDS ===== */
.card {
  background: #2a2a2a;
  max-width: 900px;
  margin: 30px auto;
  padding: 30px;
  border-left: 5px solid #e53935;
}

.card h2 {
  margin-top: 0;
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery {
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== BUTTON ===== */
.call-button {
  display: inline-block;
  padding: 15px 30px;
  background: #f5c400;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.call-button:hover {
  background: #ffd633;
}

/* ===== WHY SECTION ===== */
.why {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.why h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.why ul {
  list-style: none;
  padding: 0;
}

.why li {
  font-size: 18px;
  margin: 12px 0;
}

/* ===== LOCAL SEO ===== */
.local {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.local h2,
.local p {
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  opacity: 0.8;
}

.footer a {
  color: #f5c400;
  text-decoration: none;
}
