/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fb;
  color: #333;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Headings */
.emergency-h2{
    color: #0077B6;
}

h2 {
  font-size: 2rem;
  color: #003049;
  margin-bottom: 1rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #f77f00;
  margin-top: 8px;
  border-radius: 5px;
}

/* Paragraphs */
p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #70c1b3;
}

/* Section Backgrounds */
.intro, .cta {
  background-color: #003049;
  color: white;
}

.problems {
  background-color: #edf2f4;
}

.areas {
  background-color: #d9e7f5;
}

.faq-section {
  background-color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 0.5rem 1rem 0 0;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background-color: #f77f00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e56b00;
  transform: translateY(-2px);
}

/* CTA Button Styles */
.btn-call {
  background-color: #ef233c;
}

.btn-call:hover {
  background-color: #d90429;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #264653;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }

  p, li {
    font-size: 1.15rem;
  }

  .btn {
    font-size: 1.05rem;
  }

  .towns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
  }
}

/* Smooth Animation */
section {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
