* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e1f24;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1e1f24;
  text-decoration: none;
}

a.text-link {
  border-bottom: 1px solid #1e1f24;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #1e1f24;
  color: #f5f0ea;
  padding: 12px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.ad-label {
  font-size: 0.85rem;
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #f5f0ea;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f0ea;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 31, 36, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(720px, 92%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-primary {
  background: #f5c26b;
  color: #1e1f24;
}

.btn-secondary {
  background: rgba(245, 240, 234, 0.2);
  color: #f5f0ea;
  border: 1px solid rgba(245, 240, 234, 0.6);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.section {
  padding: 72px 0;
}

.section-contrast {
  background-color: #efe7df;
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1e1f24;
}

.section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.section-text {
  flex: 1 1 320px;
}

.section-media {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #d9d0c7;
  padding: 12px;
  border-radius: 18px;
}

.img-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 18px;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  background: #f5f0ea;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  background: #1e1f24;
  color: #f5f0ea;
  padding: 32px;
  border-radius: 20px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7beb6;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 48px 0;
  background: #1e1f24;
  color: #f5f0ea;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer a {
  color: #f5f0ea;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}

.sticky-cta .btn {
  background: #f5c26b;
  color: #1e1f24;
  box-shadow: 0 12px 30px rgba(30, 31, 36, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1e1f24;
  padding: 18px;
  border-radius: 14px;
  width: min(360px, 90%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

.cookie-banner p {
  margin-top: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

@media (max-width: 720px) {
  .hero {
    min-height: 60vh;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
