body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  background-color: #fff;
  line-height: 1.6;
}

.max-width {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.button {
  background-color: black;
  padding: 1rem;
  border-radius: 8px;
  color: white;
  text-align: center;
  max-width: 200px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logo {
  font-weight: 600;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 2rem auto 1rem auto;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: #e4ded4;
  width: 100%;
  padding: 3rem 0;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero .text {
  flex: 1;
  min-width: 280px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.hero .image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f0f0;
  padding: 1rem 3rem;
  border-radius: 12px;
}

figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 0 2rem 2rem 2rem;
}

ul {
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.footer {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 4rem;
  padding: 2rem 0;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9052;
}

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero .text {
    text-align: center;
  }
}
