body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.hero {
  background: url('img/odgusenje_hero.webp') center center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.hero-features {
  grid-template-columns: 1fr;
}
.hero-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 2rem;
}
.feature {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 500;
}
.feature-icon {
font-size: 1.25rem;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  z-index: 2;
  max-width: 700px;
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
p {
  font-size: 18px;
  margin-bottom: 30px;
}
.btn {
  background-color: #ff5a00;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 5px;
  display: inline-block;
}
.bullet-points {
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  z-index: 2;
}
.bullet-points ul {
  list-style: none;
  padding: 0;
}
.bullet-points li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}
.bullet-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff88;
}
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.emergency-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
} 