@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #1f2a33;
  background: #f6f3ef;
}

a {
  color: #1c4f7a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #f6f3ef;
  padding: 24px 6%;
  border-bottom: 1px solid #e2dcd3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #1f2a33;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #784421;
  background: #f2e1d0;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 6% 48px;
  background: #efe7dc;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: rgba(28, 79, 122, 0.1);
  border-radius: 50%;
}

.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 280px;
  z-index: 1;
  background-color: #e6dfd5;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-primary {
  background: #1c4f7a;
  color: #fff;
}

.cta-primary:hover {
  opacity: 0.9;
}

.cta-secondary {
  background: transparent;
  color: #1c4f7a;
  border: 1px solid #1c4f7a;
}

.section {
  padding: 56px 6%;
}

.section.alt {
  background: #fffaf4;
}

.image-band {
  background-image: url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2a33;
  color: #ffffff;
}

.image-band .floating-card {
  background: rgba(31, 42, 51, 0.85);
  color: #ffffff;
}

.image-band a {
  color: #ffe2c2;
}

.asym-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-frame {
  background-color: #e6dfd5;
  border-radius: 18px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}

.floating-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 440px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  background-color: #f1ebe4;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #ded6cb;
}

.service-card .card-body {
  padding: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
}

.price-tag {
  font-weight: 700;
  color: #1c4f7a;
}

.note {
  font-size: 0.95rem;
  color: #4b5a64;
}

.form-section {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4cbbf;
  font-family: inherit;
  background: #fffdfb;
}

button {
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 6% 32px auto;
  display: inline-flex;
  background: #d87a4b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.two-col {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-col .panel {
  flex: 1 1 280px;
}

.policy-wrap {
  max-width: 860px;
}

footer {
  background: #1f2a33;
  color: #f1ebe4;
  padding: 40px 6%;
}

footer a {
  color: #f1ebe4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}
