/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

a {
  color: #198754;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
header {
  background-color: #198754;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 5px;
}

header p.slogan {
  font-size: 1.1em;
  font-weight: 300;
}

/* Navigation */
nav {
  margin-top: 15px;
}

nav a {
  margin: 0 15px;
  color: #ffffff;
  font-weight: bold;
}

nav a:hover {
  color: #dfffdc;
}

/* Hero Section */
.hero {
  background: #e9f7ef;
  padding: 50px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  color: #198754;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
}

.services ul {
    list-style: none;
    padding-left: 0;
    maring-left: 0; 
}

/* Services Section */
.services {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.services h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #198754;
}

.service-item {
  margin-bottom: 30px;
}

.service-item h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #146c43;
}

/* New block for clean checkmark alignment */
.handyman-list {
  list.style: none;
    padding-left: 0;
    margin-left: 0;
}

.handyman-list li {
  position: relative;
    padding-left: 38px;
    margin-bottom: 14px;
}

.handyman-list 
  li::before {
     content: "\2705";  /*
     v emoji */
     position: absolute;
    left: 0;
    top: 0.2em;
    font-size: 1.3em;
    line-height: 1.4;
    color: green;
}


/* Call to Action */
.cta {
  background-color: #d1e7dd;
  padding: 30px 20px;
  text-align: center;
}

.cta h3 {
  color: #0f5132;
  margin-bottom: 10px;
}

.cta a.btn {
  background-color: #198754;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1.1em;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta a.btn:hover {
  background-color: #145c33;
}

/* Footer */
footer {
  background-color: #198754;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  .hero h2 {
    font-size: 1.6em;
  }

  .services h3,
  .cta h3 {
    font-size: 1.5em;
  }
}
