* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background: #ffffff;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b5ed7, #003f9e);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
}

.subtitle {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.brands {
  margin-top: 8px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #ff9800;
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #003f9e;
}

/* FEATURES */
.features {
  max-width: 1000px;
  margin: -40px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* SECTIONS */
.section {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
}

.section h2 {
  text-align: center;
  color: #0b5ed7;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.light {
  background: #f5f7fb;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* MAP */
.map-box {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.map-text {
  margin-top: 15px;
  text-align: center;
  color: #444;
}

/* FOOTER */
footer {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.1rem;
  }
}
