* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #ffffff;
  border-right: 1px solid #e5e2dc;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  margin-top: 6px;
  font-size: 12px;
  color: #9a5f14;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav-cta {
  margin-top: auto;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ece8e1;
}

.section.dark {
  background: #1f2933;
  color: #f6f4ef;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  background: #d8d2c7;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  background: #b07622;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid #b07622;
  color: #b07622;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.split {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
  background: #e1d9cf;
  border-radius: 18px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e5e2dc;
}

.card .card-image {
  background: #dcd4c7;
  border-radius: 12px;
  overflow: hidden;
}

.card .card-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: #8a5a1b;
}

.highlight {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e2dc;
}

.bg-panel {
  border-radius: 20px;
  padding: 28px;
  color: #1f2933;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.bg-finance {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #cfc3b4;
}

.bg-insights {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-color: #d7cfc4;
}

.bg-operations {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-color: #d8d0c6;
}

.form-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e2dc;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc8bf;
  font-size: 14px;
}

.inline-link {
  color: #8a5a1b;
  font-weight: 600;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e5e2dc;
  flex: 1 1 180px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta a {
  background: #2e3b4e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
}

.footer {
  padding: 30px 64px;
  background: #ffffff;
  border-top: 1px solid #e5e2dc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e2dc;
  padding: 16px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2e3b4e;
  color: #ffffff;
}

.cookie-reject {
  background: #e5e2dc;
  color: #2e3b4e;
}

.legal-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-panel .block {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e2dc;
  padding: 18px;
}

.simple-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.simple-hero .media {
  background: #ddd4c8;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 260px;
}

.simple-hero .media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e5e2dc;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.service-item .details {
  flex: 1 1 320px;
}

.service-item .price {
  font-size: 18px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e2dc;
  }

  .section {
    padding: 40px 26px;
  }

  .footer {
    padding: 24px 26px;
  }
}
