/* RESET & BASE TYPOGRAPHY */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #19313A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
  letter-spacing: 0.05em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* CUSTOM FONTS (with fallbacks) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #19313A;
  --secondary: #E0A96D;
  --accent: #FAFAFA;
  --vibrant-1: #FF416C;
  --vibrant-2: #5AE4C8;
  --vibrant-3: #FFD54F;
  --shadow: 0 4px 24px rgba(25, 49, 58, 0.08);
  --radius: 18px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 24px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  position: relative;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  box-shadow: var(--shadow);
  color: var(--accent);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-header img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--vibrant-1);
}
.cta-primary {
  background: linear-gradient(90deg, var(--vibrant-1) 0%, var(--vibrant-2) 80%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 12px 36px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(90, 228, 200, 0.10);
  cursor: pointer;
  transition: background 0.22s, color 0.17s, transform 0.14s;
  margin-left: 12px;
  text-align: center;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--vibrant-2) 10%, var(--vibrant-1) 90%);
  color: var(--accent);
  transform: scale(1.045) rotate(-1deg);
}
.cta-secondary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  padding: 10px 26px;
  border-radius: var(--radius);
  margin-top: 18px;
  display: inline-block;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
  border: 2px solid var(--secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: var(--accent);
}

/* ------------ MOBILE MENU ----------- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  z-index: 104;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vibrant-1);
  color: var(--accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--primary);
  width: 100vw;
  height: 100vh;
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.63,-0.18,.17,1.11);
  padding: 40px 24px 24px 32px;
  box-shadow: 8px 0 40px rgba(0,0,0,0.15);
  gap: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 36px;
  color: var(--secondary);
  align-self: flex-end;
  background: none;
  border: none;
  padding: 4px 8px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vibrant-1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 12px 4px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

/* ------------- HERO & SECTIONS ------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--vibrant-1);
  text-shadow: 1px 2px 14px rgba(255,65,108,0.06);
  margin-bottom: 18px;
  line-height: 1.13;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  margin-top: 0;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  color: var(--vibrant-2);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
p, li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary);
  margin-bottom: 14px;
}
.subheadline {
  color: var(--vibrant-2);
  font-size: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 28px;
}

/* FLEXBOX SPACING & LAYOUTS (Mandatory Patterns) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(33,65,90, 0.20);
  transform: scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.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;
  color: #1A2324;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(25, 49, 58, 0.08);
  min-width: 250px;
  width: 100%;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  position: relative;
}
.testimonial-card p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
  color: #1A2324;
}
.testimonial-card span {
  color: var(--vibrant-1);
  font-size: 16px;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 20px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.11s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 36px rgba(33,65,90, 0.17);
  transform: translateY(-5px) scale(1.031);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}

/* TABLES */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 26px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 2px 7px rgba(25,49,58,0.06);
  overflow: hidden;
}
thead tr {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
}
th, td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #E2E2E2;
}
th {
  font-weight: 800;
  letter-spacing: 0.03em;
}
tbody tr:last-child td {
  border-bottom: none;
}
td {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}
tbody tr:hover {
  background: #FFFBF7;
}

dl dt {
  font-weight: 700;
  margin-top: 16px;
  color: var(--vibrant-1);
  font-family: 'Montserrat', Arial, sans-serif;
}
dl dd {
  margin-bottom: 12px;
  margin-left: 12px;
  color: var(--primary);
}

/* INFO BLOCKS & ICONS */
.info-block {
  background: rgba(90, 228, 200, 0.14);
  color: var(--primary);
  border-radius: 9px;
  padding: 9px 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.info-block img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}
.address-block, .phone-email, .office-hours {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.address-block img, .phone-email img, .office-hours img {
  width: 22px;
  height: 22px;
}
.consultation-note {
  background: var(--vibrant-3);
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--primary);
  margin-top: 16px;
  font-size: 15px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer img {
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vibrant-1);
  text-decoration: underline;
}
footer address {
  font-style: normal;
  color: #D9E3E8;
  font-size: 15px;
  line-height: 1.7;
}

/* ============= BUTTON & LINK MICRO-INTERACTIONS ============ */
button, a.cta-primary, a.cta-secondary {
  transition: background 0.22s, color 0.18s, transform 0.12s, box-shadow 0.20s;
}
a:hover, a:focus {
  color: var(--vibrant-2);
}
section a.cta-primary {
  margin-top: 27px;
}
a.cta-primary:active {
  transform: scale(0.97);
}
a.cta-secondary:active {
  transform: scale(0.97);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  padding: 26px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -8px 40px rgba(25,49,58,0.16);
  z-index: 2001;
  animation: slideUpCookie 0.45s cubic-bezier(.46,.03,.52,.96);
  font-size: 16px;
  gap: 16px;
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 25px;
  border-radius: 14px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  border: 2px solid var(--secondary);
  box-shadow: 0 1px 8px rgba(90,228,200,0.11);
  transition: background 0.18s, color 0.17s, border-color 0.17s;
  font-size: 16px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vibrant-1);
  border-color: var(--vibrant-1);
  color: var(--accent);
}

.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 2002;
  left: 0;top: 0;width: 100vw;height: 100vh;
  background: rgba(25, 49, 58, 0.40);
}
.cookie-modal-bg.active { display: block; }
.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 42px rgba(25,49,58,0.14);
  min-width: 320px;
  max-width: 93vw;
  padding: 32px 24px 26px 24px;
  z-index: 2003;
  animation: fadeInCookie 0.34s cubic-bezier(.46,.03,.52,.96);
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: scale(0.96) translateX(-48%); }
  to   { opacity: 1; transform: scale(1) translateX(-50%); }
}
.cookie-modal h3 {
  color: var(--vibrant-1);
  font-size: 21px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  background: var(--vibrant-2);
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: background 0.15s;
  margin-left: 8px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(90, 228, 200, 0.17);
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left 0.20s cubic-bezier(.85,-0.41,.26,1.25);
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 16px;
  background: var(--vibrant-1);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--vibrant-2);
  color: var(--primary);
}
.cookie-modal-close {
  background: none;
  color: var(--vibrant-1);
  border: none;
  font-size: 32px;
  position: absolute;
  right: 20px;
  top: 14px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--primary);
}

/* ------ Artistic / Unique Elements ------ */
.section::before {
  content: "";
  display: block;
  position: absolute;
  top: -30px; left: 24px;
  width: 96px; height: 28px;
  border-radius: 20px 10px;
  background: var(--vibrant-1);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(even)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -22px; right: 44px;
  width: 70px; height: 18px;
  border-radius: 19px 7px;
  background: var(--vibrant-2);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
h1, h2, h3 {
  position: relative;
  z-index: 1;
}

/* Artistic highlight underlines */
h1::after, h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 7px;
  background: var(--vibrant-2);
  border-radius: 6px;
  position: absolute;
  left: 0; bottom: -13px;
  opacity: 0.36;
  z-index: 1;
}
h2::after {
  background: var(--vibrant-1);
  width: 44px;
  height: 5px;
  bottom: -10px;
}

/* Responsive Typography & Layouts */
@media (max-width: 1200px) {
  .container { padding: 0 12px; }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 991px) {
  h1 { font-size: 32px; }
  h2 { font-size: 23px; }
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
  .feature-grid > div {
    min-width: 170px; max-width: 330px;
    padding: 20px 15px 16px 15px;
  }
  .testimonial-card { font-size: 100%; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 10px; flex-wrap: wrap; }
  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  .section { padding: 30px 6px; margin-bottom: 34px; }
  .content-wrapper { gap: 9px; }
  .feature-grid, .testimonial-grid, .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-nav { flex-direction: column; gap: 5px; }
  footer .container { padding: 0 8px; }
  /* Footer logo smaller on mobile */
  footer img { height: 27px; }
  .cta-primary, .cta-secondary { padding: 12px 16px; font-size: 15px; }
}

@media (max-width: 480px) {
  .section { padding: 18px 2px; }
  .cookie-modal { min-width: 95vw; max-width: 99vw; padding: 19px 6px 17px 6px; }
  .cookie-modal h3 { font-size: 17px; }
}

/* ========== ACCESSIBILITY FOCUS RING ========== */
:focus {
  outline: 3px solid var(--vibrant-2);
  outline-offset: 2px;
}

/* ========== Misc ========== */
li:last-child { margin-bottom: 0; }

/**** Spacing for list/text sections ****/
ul, ol {
  margin-bottom: 12px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  list-style: disc inside;
}
.text-section li::marker {
  color: var(--secondary);
}
.text-section li {
  margin-bottom: 8px;
  font-size: 17px;
}

/**** Message/Thank You Custom Styling ****/
.consultation-note, .info-block {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
}

/* ========== Print tweaks =========== */
@media print {
  .cookie-banner, .cookie-modal-bg, .mobile-menu { display: none !important; }
  header, footer { color: #000 !important; background: #fff !important; }
}
