body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #333;
  background-color: #fff;
}
header {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
}
.hero {
  background: url('images/slide-home.jpg') no-repeat center center/cover;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.25rem;
}
main {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}
.section {
  margin-bottom: 40px;
}
.section h2 {
  color: #007ACC;
  margin-bottom: 1rem;
}
.icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.icons div {
  text-align: center;
}
.icons img {
  width: 75px;
  height: auto;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
label {
  font-weight: bold;
}
input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
button {
  padding: 12px;
  background: #007ACC;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background: #005b9f;
}
footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  font-size: 0.9rem;
}