/* General reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1e2a35; /* dark charcoal background */
  color: #ffffff;
  line-height: 1.6;
}

/* Top header */
.top-header {
  background: #111a21;
  text-align: center;
  padding: 15px 10px;
}
.top-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}
.top-call {
  margin-top: 8px;
  font-size: 18px;
  color: #2ecc71; /* green */
}
.top-call a {
  color: #2ecc71;
  text-decoration: none;
  font-weight: bold;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: #2c3e50;
}
.hero h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #2ecc71;
}
.hero .price {
  font-size: 18px;
  margin-bottom: 20px;
}
.call-btn {
  display: inline-block;
  background: #2ecc71;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 30px 20px;
}
section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2ecc71;
}
ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Services font size increase */
.services ul li {
  font-size: 20px; /* larger text */
  margin-bottom: 12px;
  line-height: 1.6;
}

/* FAQ and mission text */
.faq p,
.mission p {
  margin-bottom: 12px;
}

/* Collapsible areas */
.areas details summary {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Footer (payments) */
.footer-payment {
  text-align: center;
  padding: 20px;
  background: #111a21;
}
.footer-payment p {
  margin-bottom: 10px;
  font-size: 16px;
}
.payment-icons i {
  font-size: 28px;
  margin: 0 6px;
  color: #2ecc71;
}

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2ecc71;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
}
