* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #141b22;
  background: #f6f4f1;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #11161c;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  color: #dbe2ea;
}

.nav a:hover {
  color: #ffffff;
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px 18px;
  background: #f4c95d;
  color: #171717;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  padding: 56px 64px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 20px;
  color: #2c3743;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: #1a4b78;
  color: #f6f4f1;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #1a4b78;
  color: #1a4b78;
}

.section {
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #ffffff;
}

.section.accent {
  background: #ece2d4;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(13, 21, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.accent {
  background: #121924;
  color: #f7f4ef;
}

.inline-cta {
  font-weight: 600;
  color: #1a4b78;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 140px;
  min-width: 140px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
}

.testimonial {
  font-style: italic;
  color: #2a3440;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  align-items: center;
}

.service-info {
  flex: 1 1 240px;
}

.price {
  font-weight: 700;
  color: #1a4b78;
  font-size: 18px;
}

.form-card {
  background: #11161c;
  color: #f4f4f4;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 14px;
  color: #c9d4df;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  margin-top: 6px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.footer {
  padding: 28px 64px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  background: #11161c;
  color: #dbe2ea;
}

.footer a {
  color: #dbe2ea;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 3;
  background: rgba(17, 22, 28, 0.94);
  color: #f4f4f4;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
}

.page-header {
  padding: 48px 64px 24px;
  background: #e6d9c9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-header h1 {
  margin: 0;
  font-size: 34px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .hero,
  .section,
  .page-header,
  .footer {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    padding: 14px 20px;
  }
}
