* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f7f8fb;
  line-height: 1.6;
}

a {
  color: #1a5f7a;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #101820;
  color: #f1f3f5;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 12px;
  color: #d5dee6;
  background: #1a2430;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-list a {
  color: #f1f3f5;
  font-size: 14px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  padding: 72px 64px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 24, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  background: #f4d35e;
  color: #111827;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #1a5f7a;
  color: #f7f8fb;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #0f172a;
  color: #e2e8f0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  min-width: 260px;
}

.split .media {
  flex: 1;
  min-width: 260px;
}

.img-wrap {
  background: #dfe7ee;
  border-radius: 14px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.card.dark {
  background: #111827;
  color: #e2e8f0;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #f1f5f9;
  border-radius: 10px;
}

.pricing-item strong {
  font-weight: 700;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.panel.bg-1 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  position: relative;
}

.panel.bg-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 16px;
}

.panel.bg-1 .panel-content {
  position: relative;
  z-index: 1;
}

.form-area {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  margin-bottom: 14px;
  font-size: 14px;
}

.form-message {
  margin-top: 8px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a5f7a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
}

.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 28px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #e2e8f0;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f4d35e;
  color: #0f172a;
}

.cookie-actions .reject {
  background: #334155;
  color: #f8fafc;
}

.note {
  font-size: 14px;
  color: #6b7280;
}

.list-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
}

.section-title {
  font-size: 28px;
}

.muted {
  color: #64748b;
}

.wide-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 12px;
  color: #1f2937;
}

.page-head {
  padding: 48px 64px 24px;
  background: #ffffff;
}

.page-body {
  padding: 24px 64px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  border-left: 3px solid #f4d35e;
  padding-left: 16px;
  font-style: italic;
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .section,
  .footer,
  .hero,
  .page-head,
  .page-body {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sticky-cta {
    right: 16px;
  }
}
