* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1a4d7a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #ffffff;
  border-bottom: 1px solid #e0ded8;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-label {
  padding: 6px 12px;
  background: #f1e9da;
  border-radius: 18px;
  font-size: 0.85rem;
  color: #5c4b2b;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.container {
  width: 84%;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 420px;
}

.split .visual {
  flex: 1 1 420px;
  background: #e6e2d9;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.hero {
  padding: 64px 0 48px;
  background: #ffffff;
}

.hero .visual {
  min-height: 380px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  background: #1a4d7a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f1e9da;
  color: #5c4b2b;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fffaf0;
}

.section.dark {
  background: #0f2d3f;
  color: #f5f5f5;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  height: 160px;
  background: #dfe5ec;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #1a4d7a;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #e9f0f6;
  color: #1a4d7a;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px 8%;
  background: #ffffff;
  border-top: 1px solid #e0ded8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #f1e9da;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.notice {
  background: #fff4d6;
  border-radius: 12px;
  padding: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #d8d2c7;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #eef3f7;
  border-radius: 16px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column .col {
  flex: 1 1 320px;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.page-title {
  padding: 48px 0 24px;
  background: #ffffff;
}

.page-title h1 {
  font-size: 2.3rem;
}

.simple-section {
  padding: 36px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-box {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
}
