* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background: #f5f6f7;
  line-height: 1.6;
}

.page-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f1a24;
  color: #f3f7fa;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  background: #213142;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  color: #f3f7fa;
  text-decoration: none;
  padding: 6px 0;
}

.nav-links a:focus {
  outline: 2px solid #f7c84b;
  outline-offset: 2px;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #f7c84b;
  color: #1b1f24;
}

.btn-secondary {
  background: #ffffff;
  color: #1b1f24;
  border: 1px solid #d2d6da;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 60px;
  color: #fdfefe;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 22, 0.65);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  padding: 70px 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #0f1a24;
  color: #f3f7fa;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-block {
  flex: 1 1 320px;
  background: #dfe6ec;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fdfefe;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3e8ee;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background: #dfe6ec;
}

.price {
  font-weight: 700;
  color: #1b1f24;
}

.section-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f3f7fa;
}

.section-bg-1 .text-block {
  background: rgba(15, 26, 36, 0.75);
  padding: 24px;
  border-radius: 16px;
}

.section-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f3f7fa;
}

.section-bg-2 .text-block {
  background: rgba(15, 26, 36, 0.72);
  padding: 24px;
  border-radius: 16px;
}

.inline-note {
  background: #f2f5f8;
  padding: 18px;
  border-left: 4px solid #f7c84b;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e3e8ee;
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e3e8ee;
  flex: 1 1 360px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9d2dc;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #f7c84b;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-cta a {
  text-decoration: none;
  font-weight: 700;
  color: #1b1f24;
}

.footer {
  background: #0f1a24;
  color: #f3f7fa;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7c84b;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 999;
  display: none;
  border: 1px solid #e3e8ee;
}

.cookie-banner p {
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f7c84b;
  color: #1b1f24;
}

.cookie-reject {
  background: #e3e8ee;
  color: #1b1f24;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 50px 60px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .page-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero,
  .section,
  .footer,
  .legal-content {
    padding: 40px 24px;
  }
}
