* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e2328;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1c4c7a;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1c4c7a;
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #14283d;
  color: #f5f7fa;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #f2c94c;
  color: #1b1b1b;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  color: #f5f7fa;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}

.cta-sidebar {
  margin-top: auto;
  background: #1c4c7a;
  color: #fefefe;
  border: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cta-sidebar:hover {
  background: #15385b;
}

.content {
  flex: 1;
  padding: 32px 48px 64px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 30, 45, 0.1);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #dfe6ee;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  margin-top: 40px;
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 30, 45, 0.08);
}

.section.alt {
  background: #eef2f6;
}

.section.dark {
  background: #1b2b3b;
  color: #f5f7fa;
}

.section-title {
  margin-top: 0;
  margin-bottom: 12px;
}

.two-col {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.two-col.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
}

.inline-image {
  border-radius: 14px;
  overflow: hidden;
  background: #d8dee6;
}

.inline-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f7f6f2;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background: #d9e1ea;
}

.price {
  font-weight: 700;
  color: #1c4c7a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  background: #1c4c7a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e3edf6;
  color: #15385b;
}

.btn:hover {
  background: #15385b;
}

.btn.secondary:hover {
  background: #cfdbe7;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 30, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c9d3dd;
  font-size: 14px;
  width: 100%;
  background: #ffffff;
}

.form-feedback {
  font-size: 14px;
  color: #0d3d63;
  background: #e7f1fb;
  padding: 10px;
  border-radius: 8px;
  display: none;
}

.form-feedback.visible {
  display: block;
}

.footer {
  margin-top: 40px;
  padding: 26px;
  background: #0f1b28;
  color: #f2f5f8;
  border-radius: 16px;
}

.footer a {
  color: #f2f5f8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #f7f6f2;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero,
  .two-col {
    flex-direction: column;
  }

  .content {
    padding: 24px;
  }
}
