* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: #0a4a6e;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #0f1f2b;
  color: #f4f4f4;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  background: #f4d35e;
  color: #1c1c1c;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  color: #f4f4f4;
}

.main {
  flex: 1;
  padding: 30px 40px 80px;
}

.section {
  margin-bottom: 46px;
}

.hero {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
}

.img-frame {
  background: #d9dee2;
  padding: 8px;
  border-radius: 12px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.panel.dark {
  background: #122635;
  color: #f5f5f5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 6px 0 2px;
}

.price {
  font-weight: 600;
  color: #0a4a6e;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: #0a4a6e;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #f4d35e;
  color: #1c1c1c;
}

.cta-link {
  font-weight: 600;
}

.bg-hero {
  background-color: #2a3a4a;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
}

.bg-focus {
  background-color: #1c2f3a;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
}

.form-wrap {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #ccd3d8;
  border-radius: 8px;
  font-size: 14px;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #f0f2f4;
  padding: 16px;
  border-left: 4px solid #0a4a6e;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0a4a6e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background: #f4d35e;
  color: #1c1c1c;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccd3d8;
  font-size: 14px;
  color: #5a636a;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-note {
  margin-top: 14px;
}

.page-hero {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .panel {
  flex: 1 1 260px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .main {
    padding: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
