* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #1c1c1c;
  background-color: #f8f5f2;
  line-height: 1.6;
}

a {
  color: #2f5a8c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.frame {
  background-color: #d9d0c8;
}

.frame-b {
  background-color: #d7cfc5;
}

.frame-c {
  background-color: #d8cfc4;
}

.frame-d {
  background-color: #d4c9bf;
}

.frame-e {
  background-color: #d1c8bd;
}

.frame-f {
  background-color: #d7cec4;
}

.frame-g {
  background-color: #d9cfc1;
}

.frame-h {
  background-color: #d6cec2;
}

.frame-i {
  background-color: #d1c9be;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  padding: 18px 24px 8px;
  background-color: #f8f5f2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #6c5d50;
  border: 1px solid #d6cbbd;
  padding: 6px 10px;
  border-radius: 18px;
  background-color: #fff4e8;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-content {
  flex: 1;
  padding: 40px 40px 40px 48px;
}

.hero-visual {
  flex: 1;
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d0c6;
}

.about-hero-visual {
  flex: 1;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d0c6;
}

.services-hero-visual {
  flex: 1;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d4c9be;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #2f5a8c;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: #f0d9c2;
  color: #3e2a1a;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 56px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text {
  flex: 1;
}

.split-section .visual {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ddd3c7;
}

.split-section .visual img {
  height: 320px;
}

.layered {
  margin: 60px 0;
  padding: 40px;
  background-color: #fff7ee;
  border-radius: 18px;
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed #e0c7a9;
  border-radius: 14px;
  pointer-events: none;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1.1;
  padding: 24px;
}

.service-info h3 {
  margin-top: 0;
}

.service-visual {
  flex: 0.9;
  background-color: #d7d0c6;
}

.service-visual img {
  height: 220px;
}

.price {
  font-weight: 700;
  color: #2f5a8c;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1c1c1c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.sticky-cta button {
  background-color: #f0d9c2;
  color: #3e2a1a;
}

.form-section {
  background-color: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4c4b5;
  font-size: 16px;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #d9cfc3;
  font-size: 14px;
  color: #5c534c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.reference-list a {
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-banner {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  flex-wrap: wrap;
  align-items: center;
}

.highlight {
  background-color: #efe5d9;
  padding: 16px 20px;
  border-radius: 12px;
}

.meta-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-card {
  flex: 1;
  min-width: 220px;
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0;
}

.about-background {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.section-background .page {
  padding-bottom: 0;
}

.section-background .highlight {
  background-color: rgba(28, 28, 28, 0.7);
  color: #fff;
}

.notice {
  font-size: 13px;
  color: #6b625a;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .service-row {
    flex-direction: column;
  }

  .hero-content {
    padding: 32px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    flex-direction: column;
  }
}
