* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #1f2a2d;
  color: #f5f2ed;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px;
  background: #2d3d42;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px;
  background: #f9c784;
  color: #1f2a2d;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 36px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1f2a2d;
  color: #f7f4f0;
  border-radius: 8px;
  font-weight: 600;
}

.secondary-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #1f2a2d;
  border-bottom: 2px solid #1f2a2d;
  padding-bottom: 2px;
}

.image-frame {
  background: #e6dfd4;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 320px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.image-box {
  background: #dcd4c7;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: #fff7ec;
  padding: 28px;
  border-radius: 24px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text-block {
  flex: 1 1 300px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ece5d8;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: #1f2a2d;
  color: #f7f4f0;
  padding: 16px;
  border-radius: 16px;
}

.form-panel {
  background: #1f2a2d;
  color: #f7f4f0;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.form-panel button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #f9c784;
  font-weight: 700;
  color: #1f2a2d;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #efe6d8;
}

.price-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #1f2a2d;
}

.footer {
  padding-top: 30px;
  border-top: 1px solid #e5dfd4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2a2d;
  color: #f7f4f0;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  background: #f9c784;
  color: #1f2a2d;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.sticky-cta button {
  background: transparent;
  border: 1px solid #f7f4f0;
  color: #f7f4f0;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1f2a2d;
  color: #f7f4f0;
}

.cookie-reject {
  background: #f0e7d8;
  color: #1f2a2d;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-block {
  flex: 1 1 260px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #efe6d8;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
  }

  .content {
    padding: 28px 22px 120px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
