body {
  background-color: #f6c49f;
  color: #5a3e36;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #f6c49f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar a {
  text-decoration: none;
  color: white;
  margin-left: 20px;
  font-weight: bold;
  transition: opacity 0.2s;
}

.navbar a:hover {
  opacity: 0.8;
}

.logo {
  font-size: 25px;
  font-weight: 700;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  background-color: #fff0e6;
  border-bottom: 2px solid #f6c49f;
}

.hero-text {
  max-width: 45%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #e07b5f;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  padding: 12px 24px;
  background-color: #f6c49f;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.9;
}

.hero-media {
  max-width: 50%;
}

.hero-media img,
.hero-media video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  background-color: #ffe7d6;
}

.hero-media-off {
  display: none;
}

.section {
  padding: 80px 50px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #f6c49f;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e07b5f;
}

.section p {
  font-size: 1.1rem;
  max-width: 700px;
  text-align: center;
  margin-bottom: 30px;
}

.section img,
.section video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #ffe7d6;
}
