@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Lora:wght@400;700&display=swap");

body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  font-weight: 700;
  color: #d76b6b;
}

p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

nav ul li a.active {
  font-style: italic;
  color: #d76b6b;
}

.hero {
  width: 80%;
  height: auto;
  max-width: 600px;
  background-size: cover;
  background-position: center;
}

.container {
  width: 80%;
  margin: auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}

.text-content {
  width: 45%;
}

.product,
.team-member {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.product img,
.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

form {
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

input,
button {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #d76b6b;
  border-radius: 5px;
}

button {
  background-color: #d76b6b;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background-color: #f8f8f8;
  margin-top: 50px;
}
