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

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styling */
header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Home Section */
#home {
  background: #333 url('your-image.jpg') no-repeat center center/cover;
  text-align: center;
  color: white;
  padding: 50px 20px;
}

#home h1 {
  font-size: 3rem;
}

.cta-button {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #e64a19;
}

/* About Section */
#about {
  padding: 40px;
  background-color: white;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Services Section */
#services {
  padding: 40px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.service {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 45%;
}

.service h3 {
  color: #ff5722;
}

/* Contact Section */
#contact {
  padding: 40px;
  text-align: center;
  background-color: #fff;
}

footer {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
}
