* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1e4b84;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4%;
  background-color: #ffffff;
  border-bottom: 1px solid #e6e2dd;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a5a5a;
  max-width: 320px;
}

.hero {
  min-height: 70vh;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  background-color: #243043;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 33, 0.55);
}

.hero-content {
  position: relative;
  padding: 72px 4% 80px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-primary,
.cta-secondary,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-primary {
  background-color: #f8d06f;
  color: #1a1a1a;
}

.cta-secondary {
  background-color: #1e4b84;
  color: #ffffff;
}

.cta-outline {
  border-color: #1e4b84;
  color: #1e4b84;
  background-color: transparent;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.emphasis {
  background-color: #1e4b84;
  color: #ffffff;
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-box {
  background-color: #d9dde2;
  border-radius: 18px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.story-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.highlight-line {
  font-size: 1.2rem;
  max-width: 780px;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.bullets span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.08);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-price {
  font-weight: 700;
  color: #1e4b84;
}

.testimonial {
  border-left: 4px solid #f8d06f;
  padding-left: 16px;
  margin: 12px 0;
}

.pricing-reveal {
  background-color: #fef6e7;
  border-radius: 24px;
  padding: 36px;
}

.form-panel {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c4be;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}

.sticky-cta a {
  background-color: #1e4b84;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
}

.footer {
  background-color: #0f1621;
  color: #d3d8de;
  padding: 40px 0 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: #a4abb3;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.14);
  max-width: 320px;
  display: none;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background-color: #2b3341;
  color: #ffffff;
  padding: 60px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  flex: 1 1 260px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-strip .media-box {
  flex: 1 1 200px;
  min-height: 180px;
}

.section-bg-one {
  background-color: #e8eef3;
  background-image: url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg-two {
  background-color: #f1ebe5;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg-overlay {
  background: rgba(255, 255, 255, 0.88);
  padding: 64px 0;
}

@media (max-width: 760px) {
  .top-nav {
    align-items: flex-start;
  }

  .hero-content {
    padding: 56px 6% 64px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
