/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

.hero {
  background: #00587a;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.cta-button:hover {
  background: #e65c28;
}

.about, .services, .emergency, .testimonials {
  background: white;
  margin-top: 20px;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  margin-bottom: 15px;
  color: #00587a;
}

.services ul {
  list-style: none;
  padding-left: 0;
}

.services li {
  padding: 8px 0;
}

blockquote {
  margin-top: 10px;
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 16px;
  margin-bottom: 10px;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 30px;
}

.footer a {
  color: #ffb347;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}