body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}
header {
  background-color: #0056B3;
  color: white;
  padding: 4em 1em;
  text-align: center;
}
header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
header p {
  font-size: 1.2em;
}
.cta-button {
  background-color: #FFA500;
  padding: 1em 2em;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em 1em;
  background: #f9f9f9;
}
.feature-box {
  flex: 1 1 300px;
  margin: 1em;
  background: white;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em 1em;
  gap: 1em;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
.testimonials {
  text-align: center;
  padding: 2em 1em;
  background: #fff;
}
.testimonials blockquote {
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
footer {
  text-align: center;
  font-size: 0.9em;
  padding: 2em 1em;
  background-color: #f1f1f1;
}
