* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f2b;
  background: #f6f4f0;
}

a {
  color: #1b4d8a;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #d7d2c7;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 28px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c4b1f;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid #c7c0b5;
  border-radius: 20px;
  background: #ffffff;
}

.hero {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero-copy h2 {
  font-size: 36px;
  margin: 0;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  background: #d8d4cc;
  padding: 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.section {
  margin: 42px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e4ded4;
}

.column img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background: #d8d4cc;
}

.inline-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff3e7;
  border-radius: 16px;
  padding: 16px;
}

.inline-card img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background: #d8d4cc;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e4ded4;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background: #d8d4cc;
}

.price {
  font-size: 18px;
  color: #1b4d8a;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 24px;
  background: #1b4d8a;
  color: #ffffff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.cta-button.secondary {
  background: #ead8c3;
  color: #4a2b09;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e4ded4;
  border-radius: 16px;
  padding: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  color: #4a2b09;
}

input,
select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cfc7ba;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b4d8a;
  padding: 12px 16px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  z-index: 20;
}

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d7d2c7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d7d2c7;
  border-radius: 16px;
  padding: 14px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1b4d8a;
  color: #ffffff;
}

.cookie-reject {
  background: #ead8c3;
  color: #4a2b09;
}

.small-note {
  font-size: 12px;
  color: #5c5c5c;
}
