/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* Header */
.site-header {
  background: #0052cc;
  color: white;
  padding: 1rem;
  text-align: center;
}

.site-header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

/* Dropdown */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropbtn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #0052cc;
  padding: 10px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.dropdown-content a:hover {
  background: #eaf0f6;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem;
  background: #eaf0f6;
}

.btn-cta {
  display: inline-block;
  margin-top: 1rem;
  background: #0052cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Emergency Section */
.fast-emergency {
  background: url('https://i.imgur.com/9O6iGpM.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

/* Footer */
.site-footer {
  background: #0052cc;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer-nav a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Sticky Call Bar (Mobile) */
.sticky-call {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0052cc;
  text-align: center;
  padding: 0.75rem;
  display: none;
}

.sticky-call a {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  .sticky-call {
    display: block;
  }
}