/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styles */
header {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  background-image: url('hero-image.jpg');
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #f44336;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e53935;
}

/* Features Section Styles */
.features {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.feature {
  text-align: center;
  margin: 0 20px;
  max-width: 300px;
}

.feature i {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Testimonial Section Styles */
.testimonial {
  background-color: #f5f5f5;
  padding: 40px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial cite {
  font-size: 18px;
  font-weight: bold;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer nav ul {
  display: flex;
  justify-content: center;
}

footer nav ul li {
  margin-right: 10px;
}

footer nav ul li a {
  color: #fff;
  text-decoration: none;
}
