* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f7f8;
}

a {
  color: #1f4d5a;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #10181c;
  color: #eef3f6;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #c9d8df;
  background-color: #1b2a30;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-list a {
  color: #eef3f6;
  font-size: 15px;
}

.sidebar-cta button {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background-color: #ffce72;
  color: #1f2a2e;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  color: #f9fbfc;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 18, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.primary-btn {
  background-color: #ffce72;
  color: #1f2a2e;
}

.secondary-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: #f9fbfc;
  border: 1px solid #f9fbfc;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #dbe3e7;
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 230px;
}

.card .image-frame {
  height: 160px;
}

.card .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1f4d5a;
}

.bg-band {
  color: #f9fbfc;
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 29, 32, 0.62);
}

.bg-band .band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 22, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta button {
  padding: 10px 14px;
  border: none;
  background-color: #1f4d5a;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
}

.form-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccd6db;
  font-size: 14px;
  font-family: inherit;
}

.form-card button {
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  background-color: #ffce72;
  color: #1f2a2e;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background-color: #10181c;
  color: #d7e2e7;
  padding: 36px 8%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}

.footer a {
  color: #d7e2e7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #1f2a2e;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: #1f4d5a;
  color: #ffffff;
}

.cookie-actions button.secondary {
  background-color: #cbd6dc;
  color: #1f2a2e;
}

.page-index .hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.page-index .bg-band {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.page-services .hero {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.page-about .hero {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
}

.page-contact .hero {
  background-image: url("https://images.unsplash.com/photo-1504384764586-bb4cdc1707b0?w=1400&q=80");
}

.page-thanks .hero {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .content {
    width: 100%;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }
}
