/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: "Century Gothic", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #000 !important;
}

#services ul {
  list-style-position: inside;
  text-align: center;
}

/* Header and Navigation */
header {
  background-color: #4CAF50;
  padding: 1rem 0;
}
header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
header nav ul li {
  margin: 0 1rem;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
#hero {
  background: url('dog-training.jpg') no-repeat center center/cover;
  height: 60vh;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
#hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.btn {
  background-color: #FF9800;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

/* Main Content Sections */
main section {
  padding: 2rem;
  text-align: center;
}
main section h2 {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
