* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #172033;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1f5bff;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #ffefe0;
  color: #7a3b00;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  align-items: center;
}

.hero-copy,
.hero-visual {
  flex: 1 1 320px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #3b455a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #1f5bff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f1f3f8;
  color: #1a2d57;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-title {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

.split-text p {
  margin-bottom: 1rem;
}

.panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 60px rgba(23, 32, 51, 0.08);
}

.panel.accent {
  background: #f0f6ff;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  background-color: #e4e8f0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f3e2d;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: #fff7ed;
  border-radius: 20px;
  padding: 1.4rem;
  font-style: italic;
}

.form-section {
  background: #172033;
  color: #f5f7ff;
  padding: 3.5rem 0;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.form-panel,
.form-info {
  flex: 1 1 320px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d2d7e2;
  font-size: 1rem;
}

.footer {
  padding: 2.5rem 0;
  background: #0f172a;
  color: #e2e8f0;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-bottom: 2rem;
}

.footer a {
  color: #9bb2ff;
}

.disclaimer {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-top: 1rem;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  display: none;
  width: min(640px, 92%);
  z-index: 10;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.simple-header {
  padding: 2.5rem 0 1.5rem;
}

.simple-header h1 {
  font-size: 2.4rem;
}

.simple-section {
  padding: 2.5rem 0 3rem;
}

.address-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.08);
}

.inline-image {
  margin-top: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e8ecef;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}
