* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d2328;
  background: #f4f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1a4f6b;
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw;
  gap: 24px;
  background: #ffffff;
  border-bottom: 1px solid #e4ded4;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 26px;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #5b6570;
  max-width: 280px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 0;
}

.hero-visual {
  background: #d2d6d4;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 320px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  background: #1a4f6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
}

.btn-secondary {
  background: #f2c94c;
  color: #1d2328;
  padding: 12px 20px;
  border-radius: 6px;
}

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0 6vw;
}

.magazine-main {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.magazine-sidebar {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.panel-title {
  font-size: 20px;
}

.inline-image {
  background: #d8dbda;
  padding: 12px;
  border-radius: 10px;
}

.inline-image img {
  width: 100%;
  height: 260px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f7f5f0;
  padding: 18px;
  border-radius: 10px;
}

.service-item img {
  width: 100%;
  height: 180px;
}

.service-price {
  font-weight: 600;
  color: #1a4f6b;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw;
}

.story-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-column {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
  background: #1d2328;
  color: #fff;
}

.cta-strip a {
  color: #f2c94c;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff7e0;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw 40px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px;
  border: 1px solid #c9cdd1;
  border-radius: 6px;
  font-size: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 32px 6vw;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #e4ded4;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  font-size: 12px;
  color: #5b6570;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1d2328;
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 6px;
}

.cookie-accept {
  background: #f2c94c;
  color: #1d2328;
}

.cookie-reject {
  background: #56606b;
  color: #fff;
}

.page-header {
  padding: 24px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-header h1 {
  font-size: 32px;
  line-height: 1.2;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6vw 32px;
}

.two-column .col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-card {
  background: #d9dfdf;
  padding: 12px;
  border-radius: 10px;
}

.image-card img {
  width: 100%;
  height: 240px;
}
