/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FBFAFD;
  color: #28446F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #28446F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7AE3E;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  display: block;
}
strong {
  font-weight: 600;
}

/* ===== BRAND, PASTEL & TYPOGRAPHY BASE ===== */
:root {
  --color-primary: #28446F;
  --color-secondary: #F5F5F7;
  --color-accent: #F7AE3E;
  --color-bg: #FBFAFD;
  --color-card: #FFFFFF;
  --color-soft-blue: #D9E6F6;
  --color-soft-pink: #FDE7E1;
  --color-soft-yellow: #FFF4D2;
  --color-soft-lilac: #F3E8FA;
  --color-border: #EAEAEA;
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', 'Georgia', serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5 { font-size: 1.1rem; margin-bottom: 10px; }
.subheadline {
  color: #627BAD;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #28446F;
}

/* ===== CONTAINERS & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(90deg, #FDE7E1 0%, #F3E8FA 100%);
  border-bottom: 1.5px solid var(--color-border);
  box-shadow: 0 3px 12px rgba(196, 200, 255, 0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 20px;
}
.main-nav a {
  font-weight: 500;
  font-size: 1rem;
  color: #28446F;
  padding: 6px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 10px 30px;
  font-size: 1.07rem;
  font-family: 'Roboto Slab', 'Georgia', serif;
  font-weight: 600;
  box-shadow: 0 2px 18px 0 rgba(247, 174, 62, 0.10);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fdc575;
  color: var(--color-primary);
  box-shadow: 0 3px 24px 0 rgba(40, 68, 111, 0.12);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 10px;
  margin-left: 10px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-soft-blue);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,245,247,0.98);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.42,1.01,.73,1);
  z-index: 2010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 36px 0 24px;
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 2px 0 16px 0 rgba(40,68,111,0.10);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-top: 28px;
  margin-bottom: 12px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: 'Roboto Slab', serif;
  color: var(--color-primary);
  padding: 8px 0 8px 3px;
  border-radius: 8px;
  transition: background 0.20s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--color-accent);
}

/* ===== HERO & CTA SECTIONS ===== */
.hero {
  background: linear-gradient(120deg, #F3E8FA 10%, #D9E6F6 90%);
  padding: 56px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta {
  background: linear-gradient(90deg, #FFF4D2 20%, #FDE7E1 100%);
  border-radius: 24px;
  margin-bottom: 38px;
  padding: 48px 24px 44px 24px;
  box-shadow: 0 4px 18px 0 rgba(247, 174, 62, 0.08);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* ===== FLEXBOX UTILITY LAYOUTS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 1px 7px rgba(130, 150, 184, 0.09);
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,68,111,0.12);
  transform: translateY(-3px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(78, 85, 140, 0.07);
  margin-bottom: 24px;
  min-width: 0;
  flex: 1 1 280px;
  border: 1px solid var(--color-border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== FEATURE SECTIONS ===== */
.features, .services {
  background: linear-gradient(91deg, #D9E6F6 60%, #F3E8FA 100%);
  border-radius: 20px;
  margin-bottom: 44px;
  box-shadow: 0 4px 22px 0 rgba(100, 155, 180, 0.07);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #FDF7FF;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  flex: 1 1 210px;
  min-width: 170px;
  box-shadow: 0 2px 8px rgba(200,172,255,0.05);
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 110px;
  background: #F5F5F7;
  border-radius: 11px;
  padding: 12px 18px 10px 18px;
  font-size: .98rem;
  color: #5060A2;
  box-shadow: 0 1px 4px rgba(180,180,255,0.06);
}
.feature-icons img {
  width: 37px;
  height: 37px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(90deg, #FDE7E1 40%, #D9E6F6 100%);
  border-radius: 19px;
  box-shadow: 0 3px 12px 0 rgba(255,180,145,0.07);
  padding-top: 26px;
  padding-bottom: 26px;
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #28446F;
  quotes: "\201E" "\201D";
}
.testimonial-author {
  color: #303D66;
  font-family: 'Roboto Slab', 'Georgia', serif;
  font-size: .97rem;
  font-weight: 500;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #FFF;
  box-shadow: 0 2px 8px rgba(240,190,120,0.10);
  border: 1px solid #EFE4C3;
}
.pricing-table th, .pricing-table td {
  padding: 13px 18px;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table th {
  background: #FFF4D2;
  color: #28446F;
  font-weight: 700;
  border-bottom: 1px solid #F7AE3E;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #FFF7E0;
}

.pricing-benefits li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #4f648e;
}

/* ===== FAQ, LEGAL, & TEXT SECTIONS ===== */
.faq, .legal, .map, .thank-you, .contact {
  background: var(--color-soft-blue);
  border-radius: 15px;
  padding: 34px 18px 40px 18px;
  margin-bottom: 45px;
  box-shadow: 0 1px 12px rgba(180,190,220,0.08);
}
dt {
  font-weight: 600;
  color: #415587;
  margin-top: 16px;
  margin-bottom: 5px;
  font-family: 'Roboto Slab', serif;
}
dd {
  margin-left: 0;
  margin-bottom: 12px;
  color: #28446F;
}
.text-section {
  background: transparent;
  color: #5060a2;
  padding: 0 8px;
  font-size: 1.01rem;
}
.static-map-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #526891;
  background: #F5F5F7;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 500;
}
.static-map-placeholder img {
  width: 32px; height: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, #F3E8FA 10%, #D9E6F6 100%);
  border-top: 1px solid var(--color-border);
  padding: 28px 0 18px 0;
  font-size: 0.99rem;
  margin-top: 42px;
  box-shadow: 0 -1px 16px 0 rgba(210,190,255,0.07);
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #4f648e;
  font-size: .98rem;
  transition: color 0.18s;
  padding: 3px 1px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.company-info {
  color: #607292;
  font-size: 0.97rem;
  line-height: 1.6;
}
footer img {
  height: 40px;
  margin-bottom: 8px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2050;
  background: linear-gradient(90deg, #FFF4D2 50%, #F3E8FA 100%);
  box-shadow: 0 -4px 32px 0 rgba(80,83,130,0.05);
  padding: 25px 10px 18px 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: .97rem;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: banner-slide-up 0.72s cubic-bezier(.4,1.4,.3,1);
}
@keyframes banner-slide-up { from {transform: translateY(110%);} to {transform: translateY(0);} }
.cookie-banner p {
  color: #28446F;
  margin: 0;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--color-accent);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  padding: 8px 22px;
  font-size: .99rem;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.18s, color 0.16s, box-shadow 0.22s;
  box-shadow: 0 2px 7px rgba(247, 174, 62, 0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fdc575;
  color: var(--color-primary);
}
.cookie-settings-btn {
  background: #fff;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  margin-right: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFF4D2;
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%, -50%) scale(1);
  z-index: 3050;
  background: #fff;
  padding: 40px 28px 30px 28px;
  border-radius: 18px;
  box-shadow: 0 2px 40px rgba(60,70,120,0.14);
  min-width: 320px; max-width: 90vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-slide-in 0.41s cubic-bezier(.32,1.35,.47,1);
}
@keyframes modal-slide-in { from { opacity: 0; transform: translate(-50%, -38%) scale(.97);} to {opacity:1; transform: translate(-50%, -50%) scale(1);} }
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.23rem;
  color: #28446F;
}
.cookie-option-group {
  margin-bottom: 14px;
}
.cookie-option-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .99rem;
  color: #334476;
}
.cookie-switch {
  width: 32px; height: 18px;
  border-radius: 10px;
  background: #E9E6FE;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  margin-right: 4px;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 2px rgba(180,170,255,0.10);
}
.cookie-switch input:checked + .slider {
  left: 16px;
  background: var(--color-accent);
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-btns .cookie-btn, .cookie-modal-btns .cookie-settings-btn {
  margin-right: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #28446F;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F5F5F7;
  color: var(--color-accent);
}

/* ===== BUTTONS ===== */
button, .btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.22s;
  outline: none;
}
button:focus, .btn:focus {
  outline: 2px solid #F7AE3E;
  outline-offset: 1px;
}

/* ===== FORMS (if any in future) ===== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1.5px solid #d1d5e1;
  background: #fff;
  margin-bottom: 8px;
  color: var(--color-primary);
  width: 100%;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F7AE3E;
  outline: none;
}

/* ===== VARIOUS SECTIONS ===== */
.about {
  background: linear-gradient(120deg, #F5F5F7 60%, #D9E6F6 100%);
  border-radius: 19px;
  box-shadow: 0 2px 14px 0 rgba(120, 135, 200, 0.08);
  margin-bottom: 45px;
}
.thank-you {
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, #F3E8FA 60%, #FDE7E1 100%);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F5F5F7;
  border-radius: 11px;
  padding: 14px 20px;
  font-size: 1.06rem;
  color: #28446F;
}

/* ===== TRANSITIONS & MICRO-INTERACTIONS ===== */
.card, .testimonial-card, .feature-grid li, .feature-icons div, .footer-nav a {
  transition: box-shadow 0.20s, background 0.16s, color 0.18s, border 0.14s;
}
.feature-grid li:hover, .feature-grid li:focus {
  background: #FFF4D2;
  box-shadow: 0 6px 24px rgba(247,174,62,0.11);
}
.feature-icons div:hover, .feature-icons div:focus {
  background: #FDE7E1;
  color: #28446F;
  box-shadow: 0 6px 24px rgba(255,170,170,0.09);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1150px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
    font-size: .98rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.11rem; }
  .container { padding: 0 7px; }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-left: 6px; padding-right: 6px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 9px 18px;
    font-size: 1rem;
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card-container, .content-grid, .feature-icons, .feature-grid {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .card, .testimonial-card {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 22px;
    padding: 18px 10px 16px 10px;
  }
  .hero, .cta {
    padding: 26px 0 19px 0;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 34px;
  }
  .about, .features, .services, .faq, .legal, .map, .thank-you, .testimonials {
    padding: 19px 7px 19px 7px;
    border-radius: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 5px;
    font-size: .95rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .static-map-placeholder {
    font-size: .98rem;
    padding: 7px 7px;
  }
}
@media (max-width: 520px) {
  .cookie-modal {
    min-width: 210px;
    padding: 18px 7px 12px 7px;
  }
}
/* ===== Z-INDEX RESERVATION ===== */
header { z-index: 1001; position: relative; }
footer { z-index:8; position: relative; }

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid #F7AE3E;
  outline-offset: 1px;
}

/* ===== PRINT (optional) ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container { max-width: 100vw; }
  html, body { background: #fff; }
}
section {
  padding: 10px 0;
}