body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2c3e50;
  }
  .nav-links.active {
    display: flex;
  }
}

.hero {
  background-color: #3498db;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #e67e22;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  padding: 60px 0;
  text-align: center;
}

.features h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  justify-content: space-between;
}

.feature {
  width: 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonials {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.testimonial-list {
  display: flex;
  justify-content: space-between;
}

.testimonial {
  width: 45%;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial .author {
  font-weight: bold;
  color: #3498db;
}

.faq {
  background-color: #34495e;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.faq h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background-color: #2c3e50;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
}

.faq-answer {
  padding: 15px;
  background-color: #fff;
  color: #333;
  display: none;
}

.faq-answer.active {
  display: block;
}

.contact {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact textarea {
  height: 150px;
}

.contact button {
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #2980b9;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.social-media {
  margin-bottom: 20px;
}

.social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-media a:hover {
  color: #3498db;
}