body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background-color: #fff;
}

h1, h2 {
  text-align: center;
  color: #2c6ed5;
  margin: 0;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 5px;
}

.main-header {
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 160px;
  margin-bottom: 10px;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
}

.filter-btn {
  background-color: #e7f0fd;
  color: #2c6ed5;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.filter-btn:hover {
  background-color: #d4e4fa;
}

.filter-btn.active {
  background-color: #2c6ed5;
  color: #fff;
}

#map {
  width: 100%;
  height: 500px;
  border-top: 2px solid #e7f0fd;
  border-bottom: 2px solid #e7f0fd;
}

.dealers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  padding: 20px;
}

.dealer-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  transition: 0.3s;
}

.dealer-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dealer-card h3 {
  color: #2c6ed5;
  margin: 5px 0;
}

.dealer-card p {
  margin: 3px 0;
  font-size: 0.95rem;
}

.btn-container {
  text-align: center;
  margin: 40px 0;
}

.btn-fp {
  background: #a4c6f2;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.btn-fp:hover {
  background: #2c6ed5;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1rem;
  }

  .filter-btn {
    padding: 8px 15px;
  }

  #map {
    height: 350px;
  }
}
