* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  max-width: 100%;
}

header {
  background-color: #ffffff;
  color: #4db6ac;
  padding: 1rem 2rem;
  border-bottom: 2px solid #4db6ac;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-container h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4db6ac;
}

.logo {
  width: 75px;
  height: auto;
}

nav .navigation {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #4db6ac;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: #c8e6c9;
  border-radius: 4px;
}

.hero {
  position: relative;
  background-image: url('../images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero h2,
.hero p {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 0;
}

main section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 2rem auto 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.features,
.differentiators,
.call-to-action {
  text-align: center;
}

.differentiators ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.differentiators li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.life-section {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 2rem auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.life-section h3 {
  font-size: 1.5rem;
  color: #4db6ac;
  margin-bottom: 1rem;
}

.life-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.history-section,
.generations-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
}

.story-image {
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

footer {
  background-color: #4db6ac;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.contact-form form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #444;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #4db6ac;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  align-self: center;
  display: block;
  margin: 0 auto;
}

input[type="submit"]:hover {
  background-color: #389f95;
}

iframe {
  border: none;
  width: 100%;
  height: 200px;
}