* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f8f7f4;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 5%;
  background: #f3efe7;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2a33;
  color: #fff;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  padding: 48px 5% 32px;
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
}

.image-frame {
  background-color: #e5e8ec;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.primary-button,
.secondary-button {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.primary-button {
  background: #244a5a;
  color: #fff;
  box-shadow: 0 12px 22px rgba(36, 74, 90, 0.18);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  background: #e7cfa0;
  color: #3a2d16;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 40px 5%;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 260px;
}

.band {
  background: #f0f4f6;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(31, 42, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  color: #244a5a;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-section {
  padding: 48px 5%;
  background: #fef8ea;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 32px 5% 60px;
  background: #1f2a33;
  color: #f7f3eb;
}

footer a {
  color: #f7f3eb;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-column {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #244a5a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(36, 74, 90, 0.3);
  z-index: 20;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(31, 42, 51, 0.12);
  z-index: 30;
  max-width: 320px;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 40px 5% 12px;
}

.content-block {
  padding: 18px 5% 36px;
}

.simple-list {
  padding-left: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 22px rgba(31, 42, 51, 0.08);
  max-width: 560px;
}
