
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f3f4f6;
  color: #111827;
}

.header {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #111827;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg,#2563eb,#10b981);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.search-box input {
  width: 320px;
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
}

.search-box button {
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  background: white;
  color: #2563eb;
  font-weight: bold;
  cursor: pointer;
}

.location-btn {
  background: #10b981 !important;
  color: white !important;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.results h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.vet-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.vet-card h3 {
  color: #2563eb;
  margin-bottom: 10px;
}

.vet-info {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.vet-card button {
  margin-top: 20px;
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
}

#map {
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
}

footer {
  padding: 30px;
  text-align: center;
}

@media(max-width: 900px){
  .content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .header {
    flex-direction: column;
    gap: 20px;
  }
}
