* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #1f5aa8;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand-tagline {
  font-size: 14px;
  color: #5c677a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.nav button {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: #ffffff;
  color: #1f2430;
  cursor: pointer;
}

.ad-label {
  font-size: 12px;
  color: #7a4a00;
  background: #fff4d6;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #f2d39b;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #1f5aa8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: #1f2430;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe5ee;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-row {
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
}

.magazine-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
}

.magazine-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  background: #f0efe9;
  padding: 22px;
  border-radius: 18px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.image-frame {
  background: #e5e1dc;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel {
  flex: 1;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
  box-shadow: 0 8px 18px rgba(31, 36, 48, 0.07);
}

.card-content {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.background-section {
  display: flex;
  align-items: stretch;
  gap: 26px;
  margin-bottom: 44px;
  padding: 28px;
  border-radius: 26px;
  color: #ffffff;
  background: #273248;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-section .panel {
  flex: 1;
  background: rgba(18, 24, 38, 0.78);
  padding: 24px;
  border-radius: 18px;
}

.price-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e5ea;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #1f5aa8;
}

.form-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-section form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd2dd;
  font-size: 14px;
  background: #f9fafc;
}

.form-aside {
  flex: 1;
  background: #f0efe9;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 22px;
  border: none;
  background: #2c7b51;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d7d7de;
  font-size: 14px;
  color: #5c677a;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-side {
  flex: 1;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(31, 36, 48, 0.12);
  display: none;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px 12px;
  border-radius: 14px;
  background: #1f2430;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions .ghost {
  background: #d9dee8;
  color: #1f2430;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
}

.testimonial img {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row,
  .background-section,
  .form-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
