body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: url("bg.jpg") no-repeat center center/cover;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

header h1 {
  margin: 0;
  font-size: 3em;
}

header p {
  font-size: 1.2em;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff6f61;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ff4b3a;
}

section {
  padding: 50px 20px;
  text-align: center;
}

section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 20px 0;
}

#solutions .solution {
  display: inline-block;
  width: 30%;
  margin: 1.66%;
  vertical-align: top;
}

#solutions .solution img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#why ul {
  list-style: none;
  padding: 0;
}

#why ul li {
  margin: 10px 0;
}

blockquote {
  border-left: 5px solid #4caf50;
  margin: 20px auto;
  padding: 10px 20px;
  background: #f9f9f9;
  max-width: 600px;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #45a049;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-links a,
.social-media a {
  color: #ff6f61;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-links a:hover,
.social-media a:hover {
  color: #ff4b3a;
}

.footer-links {
  margin: 10px 0;
}

.social-media {
  margin-top: 10px;
}
