* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e3ddd4;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #6b5f51;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #f2ede6;
}

.nav a:hover {
  background-color: #eadfce;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 32px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 17px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #2d5f4a;
  color: #fff;
  border-radius: 28px;
  font-size: 15px;
  width: fit-content;
}

.primary-cta:hover {
  background-color: #244b3b;
}

.hero-visual {
  flex: 1;
  background-color: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.mag-row {
  display: flex;
  gap: 26px;
  margin-top: 46px;
  align-items: stretch;
}

.mag-row.reverse {
  flex-direction: row-reverse;
}

.mag-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(27, 27, 27, 0.08);
}

.mag-column h2,
.mag-column h3 {
  font-size: 26px;
}

.inline-image {
  background-color: #d9d2c7;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background-color: #fff9f2;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #eadfce;
}

.service-card h4 {
  font-size: 18px;
}

.service-card .price {
  font-weight: 700;
  color: #2d5f4a;
}

.card-image {
  background-color: #d9d2c7;
  border-radius: 14px;
  overflow: hidden;
  height: 140px;
}

.section-cta {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 18px;
  background-color: #f2ede6;
  border: 1px solid #d6c9b6;
  width: fit-content;
}

.section-cta:hover {
  background-color: #e5d7c4;
}

.bg-panel {
  background-color: #d9d2c7;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.bg-retiro {
  background-image: url("https://images.unsplash.com/photo-1603129877119-f7574f49ebd8?w=1400&q=80");
}

.bg-panel h3 {
  font-size: 28px;
  background-color: rgba(27, 27, 27, 0.55);
  padding: 10px 16px;
  border-radius: 12px;
}

.form-section {
  margin-top: 50px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.form-section form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6c9b6;
  background-color: #fffdf8;
}

button {
  border: none;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-cta {
  background-color: #fff;
  border: 1px solid #d6c9b6;
  padding: 10px 16px;
  border-radius: 20px;
}

.ghost-cta:hover {
  background-color: #f2ede6;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background-color: #2d5f4a;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta a {
  background-color: #ffffff;
  color: #2d5f4a;
  padding: 8px 12px;
  border-radius: 16px;
  text-align: center;
}

.sticky-cta a:hover {
  background-color: #eadfce;
}

.footer {
  margin-top: 60px;
  padding: 28px 20px 36px;
  background-color: #ffffff;
  border-top: 1px solid #e3ddd4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer p,
.footer li {
  font-size: 13px;
  color: #5a5147;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-hero {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 30px 0;
}

.simple-hero .hero-image {
  flex: 1;
  background-color: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.simple-hero .hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: #fff9f2;
  border-radius: 14px;
  border: 1px solid #eadfce;
}

.icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-card {
  flex: 1 1 200px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #eadfce;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-card svg {
  width: 32px;
  height: 32px;
  color: #2d5f4a;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e3ddd4;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.cookie-banner p {
  font-size: 13px;
  max-width: 700px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 16px;
  background-color: #2d5f4a;
  color: #fff;
}

.cookie-actions button.secondary {
  background-color: #f2ede6;
  color: #2d5f4a;
}

.cookie-actions button.secondary:hover {
  background-color: #eadfce;
}

@media (max-width: 900px) {
  .hero,
  .mag-row,
  .form-section,
  .simple-hero {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
