* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 16px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f4f4f;
  border: 1px solid #d6d3cc;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-column,
.split .media-column {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.section-title {
  font-size: 1.6rem;
}

.subtle {
  color: #5b5b5b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f2a44;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #e4ded6;
  color: #2b2b2b;
}

.btn.light {
  background: #fff;
  color: #1f2a44;
  border: 1px solid #1f2a44;
}

.inline-link {
  text-decoration: underline;
  font-weight: 500;
}

.image-frame {
  background-color: #d8d0c6;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.hero-image {
  min-height: 360px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  background: #fefdfb;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 140px;
  height: 120px;
  border-radius: 12px;
}

.card h4 {
  margin: 0 0 6px;
}

.price {
  font-weight: 600;
  color: #1f2a44;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.background-panel .btn.light {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.testimonial {
  padding: 16px;
  border-left: 3px solid #1f2a44;
  background: #f2eee9;
  border-radius: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c4bd;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: #5a5a5a;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  border-radius: 999px;
  padding: 12px 20px;
  background: #ffefc2;
  color: #1f2a44;
  border: 1px solid #d2b96a;
  cursor: pointer;
  font-weight: 600;
}

footer {
  padding: 40px 6vw 60px;
  background: #1f2a44;
  color: #f9f6f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #ded8ce;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.simple-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 6vw 60px;
}

.simple-page .panel {
  box-shadow: none;
  background: #fff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-grid .panel {
  flex: 1 1 280px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-grid .card {
  align-items: flex-start;
}

.services-grid .card img {
  width: 180px;
  height: 140px;
}

.thanks {
  font-size: 1.1rem;
  background: #f2eee9;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
