* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: #1a1f2b;
  background-color: #f6f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: 280px;
  background-color: #0f1b2a;
  color: #eef2f7;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background-color: #19324a;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 56px 64px 32px;
  display: flex;
  gap: 36px;
  align-items: center;
  background-color: #ffffff;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 36px;
  margin: 0;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.hero-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe7ef;
}

.section {
  padding: 42px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-split .media {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d6dde6;
}

.section-contrast {
  background-color: #f0f3f7;
}

.section-overlay {
  background-color: #0d1a29;
  color: #f7f8fb;
  position: relative;
}

.section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.section-overlay .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(12, 27, 51, 0.08);
}

.card .card-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #dde6ef;
}

.price {
  font-weight: 600;
  color: #143d6b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  cursor: pointer;
  background-color: #19324a;
  color: #ffffff;
}

.btn-secondary {
  background-color: #e4ecf5;
  color: #143d6b;
}

.inline-link {
  color: #2a5a95;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(12, 27, 51, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(12, 27, 51, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd5df;
  font-size: 14px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 32px 64px 48px;
  background-color: #0f1b2a;
  color: #e6edf4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer .references {
  font-size: 13px;
  line-height: 1.5;
}

.notice {
  font-size: 13px;
  line-height: 1.5;
  max-width: 720px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 320px;
  background-color: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-page .simple-image {
  border-radius: 18px;
  overflow: hidden;
  background-color: #dde6ef;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafc;
  position: relative;
}

.bg-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 24, 38, 0.68);
}

.bg-about .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fafc;
  position: relative;
}

.bg-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(12, 22, 34, 0.64);
}

.bg-services .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-strip {
  padding: 32px 64px;
  background-color: #e8eef5;
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-strip .strip-text {
  flex: 1;
}

.header-strip .strip-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9e2ec;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(12, 27, 51, 0.06);
}

@media (max-width: 1024px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .cookie-banner {
    left: 16px;
  }

  .hero,
  .section-split,
  .header-strip {
    flex-direction: column;
  }
}
