* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f7f6f3;
}

a {
  color: #1a4d8f;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111;
  color: #f2f2f2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #d9d9d9;
  background: #1f1f1f;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #f2f2f2;
  padding: 8px 10px;
  border-radius: 8px;
  background: #1b1b1b;
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-cta a {
  background: #f0d264;
  color: #1b1b1b;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 52px 90px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.alt {
  background: #f0f1f5;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #1a4d8f;
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: #e7e7e7;
  color: #1c1c1c;
}

.img-frame {
  background-color: #d7dbe0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.frame-hero {
  background-color: #cfd6de;
}

.frame-inline {
  background-color: #dbe1e7;
}

.frame-process {
  background-color: #d2d7dd;
}

.frame-service-1 {
  background-color: #d8dee5;
}

.frame-service-2 {
  background-color: #dae0e6;
}

.frame-service-3 {
  background-color: #d0d6dd;
}

.frame-service-4 {
  background-color: #d7dce2;
}

.frame-service-5 {
  background-color: #d5dbe1;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-split {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #f8f8f8;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1a4d8f;
}

.testimonial {
  background: #0f1d33;
  color: #f2f2f2;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  font-size: 14px;
}

.form-grid button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #1a4d8f;
  color: #fff;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.sticky-cta a {
  background: #f0d264;
  color: #1b1b1b;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

footer {
  margin-top: 20px;
  font-size: 14px;
  color: #4f4f4f;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 90px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.cookie-accept {
  background: #1a4d8f;
  color: #fff;
}

.cookie-reject {
  background: #e0e0e0;
  color: #1c1c1c;
}

.simple-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.simple-grid .block {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px 22px 120px;
  }

  .hero,
  .inline-split {
    flex-direction: column;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
  }
}
