* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #0051ba;
  color: white;
  padding: 20px;
  text-align: center;
}

.header-image {
  width: 100%;
  height: 300px; /* Adjust the height as needed */
  object-fit: cover; /* This will crop excess while maintaining aspect ratio */
}

section {
  padding: 20px;
  margin: 10px 0;
}

#features, #pricing, #testimonials, #contact {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}

.feature {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.feature-image {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.plan {
  background-color: #0051ba;
  color: white;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

blockquote {
  border-left: 4px solid #0051ba;
  margin: 10px 0;
  padding-left: 20px;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
}

input[type="text"], input[type="email"] {
  padding: 10px;
  margin-top: 5px;
}

input[type="submit"] {
  margin-top: 10px;
  padding: 10px;
  background-color: #0051ba;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
}
