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

/* Global styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: #007bff;
}

/* Header styles */
header {
  background-color: #007bff;
  color: #fff;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
}

/* Hero section styles */
.hero {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
}

/* Services section styles */
.services {
  padding: 60px 20px;
}

.services h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.service-item {
  text-align: center;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* About section styles */
.about {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.about h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  align-items: center;
}

.about-text {
  flex: 1;
  margin-right: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* Contact section styles */
.contact {
  padding: 60px 20px;
}

.contact h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  display: block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

/* Footer styles */
footer {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 20px;
}
