@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1f2933;
  background-color: #f6f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  background-color: #f6f5f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #efece4;
}

.ad-label {
  font-size: 12px;
  color: #5b6a74;
  background-color: #e3dfd6;
  padding: 6px 12px;
  border-radius: 16px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  background-color: #dfe6e1;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-aside {
  flex: 1 1 260px;
  background-color: #111827;
  color: #f9fafb;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-spaced {
  margin-top: 24px;
}

.btn {
  background-color: #1f2933;
  color: #f9fafb;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.btn.secondary {
  background-color: #efece4;
  color: #1f2933;
}

.btn.light {
  background-color: #f9fafb;
  color: #111827;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section.alt {
  background-color: #ece7dc;
}

.section.dark {
  background-color: #111827;
  color: #f9fafb;
}

.offset-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.offset-card.dark {
  background-color: #1f2933;
  color: #f9fafb;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8dee6;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #dbe2ea;
}

.service-price {
  font-weight: 700;
  font-size: 18px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.form-box {
  flex: 1 1 360px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 14px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c7cdd4;
  font-size: 15px;
  font-family: inherit;
}

.form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #5b6a74;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #111827;
  color: #f9fafb;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 50;
  box-shadow: 0 12px 20px rgba(17, 24, 39, 0.18);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
}

.split-list.dark {
  background-color: #1f2933;
  color: #f9fafb;
}

.footer {
  margin-top: auto;
  background-color: #0f172a;
  color: #d0d6de;
  padding: 40px 8%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
}

.footer small {
  color: #9aa4b2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.15);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background-color: #1f2933;
  color: #f9fafb;
}

.cookie-actions .reject {
  background-color: #efece4;
  color: #1f2933;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h1 {
  margin-bottom: 0;
}

.notice-box {
  background-color: #fdf6e3;
  border-left: 4px solid #d7a740;
  padding: 18px;
  border-radius: 12px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 280px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.background-wave {
  background-color: #1f2933;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
}

.background-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.68);
}

.background-wave .container {
  position: relative;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  right: 12%;
  top: -40px;
  width: 140px;
  height: 140px;
  background-color: rgba(236, 231, 220, 0.9);
  border-radius: 30px;
  transform: rotate(12deg);
}

.muted {
  color: #5b6a74;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
