* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #13202f;
  background: #f6f7fb;
  line-height: 1.6;
}

a {
  color: #1a5fb4;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111b2b;
  color: #f5f7ff;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  background: #1f2c45;
  padding: 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f5f7ff;
  font-weight: 500;
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 18px;
  background: #f2c94c;
  color: #111b2b;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

.content {
  flex: 1;
  padding: 36px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.column {
  flex-direction: column;
  align-items: flex-start;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(17, 27, 43, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #3c4b5f;
}

.hero {
  background: #e8eef8;
  padding: 28px;
  border-radius: 24px;
}

.hero-media {
  flex: 1;
  min-height: 280px;
  background: #d5dce8;
  border-radius: 18px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.primary-btn {
  padding: 14px 20px;
  background: #1a5fb4;
  color: #ffffff;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
}

.ghost-btn {
  padding: 12px 18px;
  border: 1px solid #1a5fb4;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  color: #1a5fb4;
  text-align: center;
}

.inline-cta {
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(17, 27, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background: #d9e1f1;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1a5fb4;
}

.layered {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: #f2c94c;
  opacity: 0.2;
  border-radius: 50%;
}

.layered-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-inline {
  height: 220px;
  background: #d5dce8;
  border-radius: 16px;
  overflow: hidden;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 26px rgba(17, 27, 43, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8d2e3;
  font-size: 15px;
  background: #fdfdff;
}

button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-end;
  padding: 12px 16px;
  background: #15385f;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
}

.legal {
  font-size: 13px;
  color: #4b5a70;
}

.footer {
  background: #111b2b;
  color: #f5f7ff;
  padding: 26px 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #f2c94c;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(17, 27, 43, 0.2);
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.cookie-accept {
  background: #1a5fb4;
  color: #ffffff;
}

.cookie-reject {
  background: #e3e8f5;
  color: #1a2a3f;
}

.page-header {
  background: #ffffff;
  padding: 26px 32px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(17, 27, 43, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(17, 27, 43, 0.08);
}

.small-media {
  height: 180px;
  background: #d9e1f1;
  border-radius: 14px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .content {
    padding: 30px 24px 80px;
  }

  .section,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: flex-start;
  }
}
