* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1b1b;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #5b2b82;
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe3ff;
  padding: 6px 10px;
  border-radius: 999px;
  color: #351a52;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f2140;
  color: #fff;
  padding: 90px 0 70px;
}

.hero-overlay {
  background: rgba(27, 18, 36, 0.6);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: #5b2b82;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #f7e2b5;
  color: #3b2a12;
}

.section {
  padding: 60px 0;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 320px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(20, 12, 25, 0.08);
}

.image-frame {
  background: #e6dde9;
  border-radius: 16px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #3f2262;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.panel {
  flex: 1 1 320px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a1d35;
  color: #f6f3f9;
}

.section-bg .panel-box {
  background: rgba(24, 12, 30, 0.75);
  padding: 28px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  margin: 0;
}

.form-section {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(16, 10, 28, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc5d8;
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.footer {
  padding: 40px 0 70px;
  background: #1e1526;
  color: #e8e1ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #c6bbd3;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2b1b3a;
  color: #f7f1ff;
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.simple-hero {
  background: #f0e7f7;
  padding: 50px 0;
}

.simple-hero h1 {
  margin: 0;
}

.inline-note {
  background: #f1f0ff;
  padding: 16px;
  border-radius: 14px;
}
