* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d2230;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #0f1524;
  color: #f7f3ea;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar .brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.topbar nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #f7f3ea;
  border-radius: 999px;
}

.hero {
  background: #0f1524;
  color: #f7f3ea;
  padding: 48px 24px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-image {
  background: #1f2838;
  border-radius: 24px;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 38px;
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 18px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-spacing {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f7c948;
  color: #0f1524;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #f7f3ea;
  border-color: #f7f3ea;
}

.section {
  padding: 54px 24px;
}

.section.alt {
  background: #ffffff;
}

.section h2 {
  margin-top: 0;
  font-size: 28px;
}

.section p {
  max-width: 680px;
}

.highlight-box {
  background: #0f1524;
  color: #f7f3ea;
  padding: 28px;
  border-radius: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(14, 18, 26, 0.08);
  display: flex;
  flex-direction: column;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #0f1524;
}

.inline-cta {
  color: #0f1524;
  border-bottom: 1px solid #0f1524;
}

.service-select {
  border: 1px solid #e2e0db;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fffaf0;
  font-size: 15px;
  width: 100%;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(14, 18, 26, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e1dfd9;
  font-size: 15px;
}

.form-input:focus,
.service-select:focus {
  outline: 2px solid #f7c948;
  border-color: #f7c948;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #0f1524;
  color: #f7f3ea;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.footer {
  background: #0f1524;
  color: #d6d0c5;
  padding: 32px 24px;
  margin-top: auto;
}

.footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer small {
  display: block;
  max-width: 780px;
}

.image-frame {
  background: #d9d6d1;
  border-radius: 18px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(14, 18, 26, 0.15);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #0f1524;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
}

.cookie-button.primary {
  background: #0f1524;
  color: #f7f3ea;
}

.tag-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2ede4;
  font-size: 13px;
}

.bg-panel {
  background: linear-gradient(120deg, rgba(15, 21, 36, 0.85), rgba(15, 21, 36, 0.4));
  color: #f7f3ea;
  border-radius: 22px;
  padding: 24px;
}

.bg-image-section {
  background-position: center;
  background-size: cover;
  color: #f7f3ea;
  padding: 70px 24px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
}

.bg-image-section .bg-panel {
  max-width: 520px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(14, 18, 26, 0.08);
}

.contact-item h3 {
  margin-top: 0;
}
