* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background-color: #f0ede8;
  border-bottom: 1px solid #dedad4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e2ddd6;
}

.nav a:hover,
.nav a:focus {
  background-color: #e8e1d8;
}

.ad-label {
  font-size: 0.78rem;
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  position: relative;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 33, 0.78);
}

.hero-content {
  position: relative;
  display: flex;
  gap: 32px;
  padding: 80px 6%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-highlights {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-card {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background-color: #edc36b;
  color: #1b1b1b;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #ffffff;
  border: 1px solid #d6cbbd;
}

.btn:hover,
.btn:focus {
  background-color: #d7ab52;
}

.section {
  padding: 56px 6%;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.mag-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.mag-main {
  flex: 2 1 420px;
  min-width: 280px;
}

.mag-side {
  flex: 1 1 220px;
  background-color: #f0ede8;
  padding: 20px;
  border-radius: 18px;
}

.image-frame {
  background-color: #d7d2cb;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 160px;
  background-color: #ffffff;
  border: 1px solid #e5e0da;
  padding: 16px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e7e1da;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-tag {
  font-weight: 700;
  color: #6c4a1b;
}

.flow-steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6e1db;
  padding: 18px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6e0da;
  padding: 24px;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d2cb;
  font-size: 1rem;
}

.form-panel button {
  margin-top: 16px;
  width: 100%;
}

.cta-band {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 50px 6%;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 34, 40, 0.76);
}

.cta-band > * {
  position: relative;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background-color: #1f1f1f;
  color: #f0ede8;
  padding: 32px 6%;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: #f0ede8;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background-color: #383838;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6dfd8;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  margin: 0;
  font-size: 2.2rem;
}

.simple-hero {
  background-color: #ffffff;
  padding: 42px 6%;
  border-bottom: 1px solid #e6dfd8;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.legal-section {
  padding: 40px 6%;
}

.legal-section h2 {
  margin-top: 0;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6e0da;
  padding: 24px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.callout {
  background-color: #f0ede8;
  border-radius: 18px;
  padding: 20px;
}

.testimonial {
  border-left: 4px solid #edc36b;
  padding-left: 14px;
  margin: 16px 0;
  font-style: italic;
}
