* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5e677a;
  --sand: #f4f1ec;
  --mist: #eef2f6;
  --clay: #d9cfc4;
  --ocean: #2c5364;
  --accent: #7a3e2b;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--ocean);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 10px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.78rem;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  background: #fff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 20px 6vw 120px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-image {
  flex: 1 1 320px;
  background: var(--sand);
  padding: 14px;
  border-radius: 18px;
  transform: translateY(12px);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--ocean);
  color: #fff;
  cursor: pointer;
  font-size: 0.98rem;
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid var(--ocean);
  color: var(--ocean);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.offset-left {
  transform: translateX(-16px);
}

.offset-right {
  transform: translateX(16px);
}

.image-frame {
  flex: 1 1 280px;
  background: var(--mist);
  padding: 12px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.text-block {
  flex: 1 1 320px;
}

.text-block h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-bottom: 12px;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.highlight-panel {
  background: var(--sand);
  padding: 32px;
  border-radius: 20px;
  position: relative;
}

.highlight-panel::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: var(--clay);
  top: -24px;
  right: 16px;
  z-index: 0;
}

.highlight-panel .content {
  position: relative;
  z-index: 1;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e2e6ee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.service-select {
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ocean);
  background: #fff;
  cursor: pointer;
}

.service-select.active {
  background: var(--ocean);
  color: #fff;
}

.form-panel {
  background: var(--mist);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6e1;
  font-size: 1rem;
}

.form-status {
  font-size: 0.92rem;
  color: var(--accent);
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #2a3647;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  color: #fff;
}

.bg-focus p {
  color: #f0f3f7;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 220px;
  background: #fff;
  border-left: 4px solid var(--ocean);
  padding: 16px;
  border-radius: 12px;
}

footer {
  background: #111827;
  color: #f3f4f6;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d9dde5;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ocean);
  color: #fff;
}

.cookie-actions .reject {
  background: #e5e7eb;
  color: var(--ink);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.page-hero .text-block {
  flex: 1 1 320px;
}

.page-hero .image-frame img {
  height: 300px;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid #e2e6ee;
  padding: 20px;
  border-radius: 16px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.legal-block {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
}

.hidden {
  display: none;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero-image img {
    height: 320px;
  }
}
