/* ------------------------------
  CSS Reset & Normalize (modern)
------------------------------- */
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;
}
html {box-sizing: border-box;scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}
body {
  background: #F6F7FA;
  color: #172B44;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::-webkit-scrollbar {width: 10px; background: #CED8DF;}
::-webkit-scrollbar-thumb {background: #E3B041; border-radius: 6px;}
a {color: #24436A;text-decoration: none;transition: color 0.2s;}
a:hover, a:focus {color: #E3B041;}
img {max-width: 100%; display: block; border-radius: 6px;}
strong {font-weight: 700;}
ul, ol {padding-left: 24px;}
hr {border: none; border-top: 1px solid #CED8DF; margin: 32px 0;}

/* ------------------------------
  Typography & Fonts
------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #24436A;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h1 {font-size: 2.5rem; line-height: 1.13; margin-bottom: 24px;}
h2 {font-size: 2rem; line-height: 1.15; margin-bottom: 20px;}
h3 {font-size: 1.5rem; line-height: 1.2;}
h4 {font-size: 1.25rem;}
p, li {font-size: 1rem; margin-bottom: 12px;}
.tagline {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #E3B041;
  margin-top: 14px;
  letter-spacing: 0.03em;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #24436A;
  background: #F9F6F0;
  border-left: 4px solid #E3B041;
  padding: 12px 24px 12px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(36,67,106,0.03);
}

/* Artistic accent divider */
.section h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 5px;
  background: #E3B041;
  border-radius: 2px;
  margin: 8px 0 0 0;
}

/* ------------------------------
  Layout, Sections & Containers 
------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 800px) {
  .content-wrapper {
    gap: 24px;
    padding: 0;
  }
}
/* Spacing between all sections */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(36,67,106,0.07);
}
@media (max-width: 600px) {
  .section, section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* Hero Section Artistic Styling */
.hero {
  background: #24436A;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 0;
  border-radius: 0 0 30px 30px;
}
.hero .container, .hero .content-wrapper {
  color: #fff !important;
}
.hero .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .cta.primary {
  background: #E3B041;
  color: #24436A;
  border: none;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
  background: #CED8DF;
  color: #24436A;
}

/* Section Spacing for last */
.section:last-child, section:last-child {
  margin-bottom: 30px;
}

/* Artistic unique background brush accent */
.hero:before {
  content: '';
  position: absolute;
  left: -80px;
  top: -50px;
  width: 260px;
  height: 180px;
  background: #E3B041;
  opacity: 0.12;
  border-radius: 60% 40% 60% 30%/30% 60% 40% 72%;
  z-index: 1;
  pointer-events: none;
  filter: blur(4px);
}
.hero:after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -70px;
  width: 310px;
  height: 160px;
  background: #CED8DF;
  opacity: 0.17;
  border-radius: 70% 60% 50% 90%/90% 50% 60% 30%;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}
.hero .content-wrapper {
  position: relative;
  z-index: 2;
}

/* Artistic accent shapes for about/testimonials */
.section.artistic-accent {
  position: relative;
  overflow: visible;
}
.section.artistic-accent:before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 120px; height: 90px;
  background: #E3B041;
  opacity: 0.1;
  border-radius: 46% 54% 48% 52%/64% 36% 62% 38%;
  pointer-events: none;
}

/* Card Containers and Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #F9F6F0;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,67,106,0.08), 0 1.5px 6px rgba(227,176,65,0.06);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.22s;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 320px;
  min-height: 180px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 36px rgba(227,176,65,0.18);
  transform: translateY(-2px) scale(1.017);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Grid-LIKE: but only flex! */
.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;
}
@media (max-width: 768px) {
  .text-image-section {flex-direction: column; gap: 18px;}
  .content-grid {flex-direction: column;}
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Features Section Artistic Style */
.features ul, .features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 0;
}
.features ul li, .features ol li {
  background: #F0F5FA;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,67,106,0.03);
  margin-bottom: 0;
  min-width: 230px;
  padding: 22px 22px 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.features ul li:hover, .features ol li:hover {
  box-shadow: 0 6px 24px rgba(36,67,106,0.10);
  transform: translateY(-1.5px) scale(1.012);
}
.features ul li img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
  flex-shrink: 0;
}
.features h3 {
  color: #E3B041;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 3px 0;
  font-family: 'Montserrat', sans-serif;
}
.features ul li strong {
  color: #24436A;
  font-weight: 700;
}

/* About and Text Sections */
.about .text-section, .services .text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

/* Services cards styling */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 0;
}
.services ul li {
  background: #F9F6F0;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(227,176,65,0.10);
  flex: 1 1 240px;
  min-width: 230px;
  padding: 22px 22px 20px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.services ul li:hover {
  box-shadow: 0 10px 26px rgba(36,67,106,0.09);
  transform: translateY(-2.5px) scale(1.016);
  z-index: 1;
}
.services strong {color: #E3B041;font-weight:600;}

/* Testimonial Cards */
.testimonials {
  background: #f9f6f0;
  border: none;
  box-shadow: none;
}
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(227,176,65,0.08);
  margin-bottom: 24px;
  border-left: 5px solid #E3B041;
  position: relative;
  color: #222;
}
.testimonials .testimonial-card blockquote {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
  color: #24436A;
}
.testimonials .testimonial-card p {
  margin-bottom: 0;
  color: #24436A;
}
@media (max-width: 600px) {
  .testimonials .testimonial-card {flex-direction: column; border-left: none; border-top: 5px solid #E3B041;}
}

/* Contact, Address, Info Sections */
.contact .text-section ul {
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 0;
}
.contact .text-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 9px;
  gap: 6px;
}
.contact .text-section a {
  color: #24436A;
  font-weight: 600;
  word-break: break-all;
}
.contact .text-section a:hover {color: #E3B041;}

/* Footer */
footer {
  background: #24436A;
  color: #fff;
  padding: 36px 0 18px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 80px;
  box-shadow: 0 -2px 24px 0 rgba(36,67,106,0.14);
  text-align: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #E3B041;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.22s;
}
.footer-menu a:hover, .footer-menu a:focus {color: #CED8DF;}
footer p {
  color: #CED8DF;
  font-size: 0.98rem;
  margin-top: 8px;
}

/* ------------------------------
  Header, Navigation, Mobile Nav
------------------------------- */
header {
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 2px 12px rgba(36,67,106,0.07);
  position: relative;
  z-index: 15;
}
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 24px 18px 18px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  background: transparent;
  font-size: 1.1rem;
}
.main-navigation img {
  height: 40px;
  width: auto;
  margin-right: 18px;
  border-radius: 0;
}
.main-navigation .cta.primary {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .main-navigation {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 1rem;
  }
  .main-navigation .cta.primary {margin-left: 0;}
  .main-navigation img {margin-right: 6px;}
}
/* Hide nav on small screen (show burger) */
@media (max-width: 900px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {display: block;}
}
@media (min-width: 901px) {
  .mobile-menu-toggle {display: none;}
  .mobile-menu {display: none !important;}
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 26px;
  background: #24436A;
  color: #fff;
  font-size: 2rem;
  border: none;
  outline: none;
  border-radius: 60px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 31;
  box-shadow: 0 3px 18px rgba(36,67,106,0.11);
  transition: background .2s, box-shadow .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E3B041;
  color: #24436A;
  box-shadow: 0 6px 30px rgba(227,176,65,0.11);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,67,106,0.98);
  color: #fff;
  z-index: 99;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.62,-0.21,.35,1.2);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #E3B041;
  border: none;
  font-size: 2.2rem;
  padding: 22px;
  cursor: pointer;
  align-self: flex-end;
  margin: 0 18px 0 0;
  z-index: 100;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {color:#fff;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding-left: 28px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #E3B041;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0 7px 0;
  margin: 0 0 0 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.25s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CED8DF;
  color: #24436A;
  padding-left: 12px;
}

/* Ensure site content isn't overlayed by menu */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ------------------------------
  Buttons, CTA, & Interactions
------------------------------- */
.cta, .button, button, input[type=submit], input[type=button] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 24px;
  background: #24436A;
  color: #fff;
  padding: 12px 34px;
  border: none;
  box-shadow: 0 2px 12px rgba(36,67,106,0.08);
  cursor: pointer;
  margin: 10px 0 0 0;
  transition: background 0.18s, color 0.17s, transform 0.17s, box-shadow 0.22s;
  outline: none;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.cta.primary,
.button.primary {
  background: #E3B041;
  color: #24436A;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(227,176,65,0.13);
}
.cta.primary:hover,
.cta.primary:focus,
.button.primary:hover,
.button.primary:focus {
  background: #CED8DF;
  color: #24436A;
  transform: translateY(-2px) scale(1.04);
}
.cta, .button {
  background: #24436A;
  color: #fff;
}
.cta:hover, .cta:focus, .button:hover, .button:focus {
  background: #172B44;
  color: #E3B041;
  transform: translateY(-1.5px) scale(1.02);
}
button:active, .cta:active, .button:active {
  background: #E3B041;
  color: #24436A;
}

/* Micro Interactions */
.card, .features ul li, .services ul li, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.20s, background 0.24s;
}
.card:active, .features ul li:active, .services ul li:active {
  background: #CED8DF;
  box-shadow: 0 3px 16px rgba(227,176,65,0.14);
}

/* ------------------------------
  Cookie Consent Banner & Modal
------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #24436A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 222;
  box-shadow: 0 -5px 28px 0 rgba(36,67,106,0.22);
  padding: 26px 20px 18px 20px;
  animation: slideUp .65s cubic-bezier(0.8,0.3,0.55,1);
}
@keyframes slideUp {
  from {transform: translateY(160px);opacity:0;}
  to {transform: translateY(0);opacity:1;}
}
.cookie-banner p {color: #fff; margin-bottom: 7px; font-weight:500;}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-banner button, .cookie-banner .cta {
  min-width: 128px;
}
.cookie-banner .settings {
  background: #CED8DF;
  color: #24436A;
  border: none;
}
.cookie-banner .settings:hover {background: #E3B041; color: #24436A;}
.cookie-banner .reject {
  background: #F9F6F0;
  color: #24436A;
  border: 1px solid #CED8DF;
}
.cookie-banner .reject:hover {background: #CED8DF; color: #24436A;}
.cookie-banner .accept {
  background: #E3B041;
  color: #24436A;
  font-weight: 700;
}
.cookie-banner .accept:hover {background: #fff; color: #24436A;}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 240;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,67,106,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .28s;
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #24436A;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(36,67,106,0.19);
  min-width: 320px;
  max-width: 96vw;
  min-height: 210px;
  padding: 40px 28px 28px 28px;
  text-align: left;
  position: relative;
  animation: popIn .24s;
  font-size: 1.07rem;
}
@keyframes popIn {
  from {transform: scale(0.96);opacity:0.1;}
  to {transform: scale(1);opacity:1;}
}
.cookie-modal h2 {
  color: #E3B041;
  font-size: 1.5rem;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #24436A;
  cursor: pointer;
  z-index: 241;
}
.cookie-modal .modal-close:hover {color:#E3B041;}
/* Checkbox/toggle style */
.toggle-switch {
  appearance: none;
  width: 39px; height: 22px;
  background: #CED8DF;
  border-radius: 20px;
  outline: none;
  transition: background .16s;
  position: relative;
  margin-top: 2px;
}
.toggle-switch:checked {
  background: #E3B041;
}
.toggle-switch:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .19s;
  box-shadow: 0 1px 4px rgba(36,67,106,0.10);
}
.toggle-switch:checked:before {
  left: 20px;
}

/* ---------------
  Misc Elements
----------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------
  Responsive Styles
----------------- */
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
    max-width: 98vw;
  }
  .section, section {
    padding: 25px 5px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.8rem;}
  h2 {font-size: 1.26rem;}
  h3 {font-size: 1.05rem;}
  .main-navigation img {height: 32px;}
  .card, .features ul li, .services ul li {
    min-width: 170px;
    font-size: 0.99rem;
    padding: 16px 10px 10px 14px;
  }
}

/* ---------------
  Artistic Fonts
----------------- */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WxZ.woff2') format('woff2');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------
Form fields (if any exist)
----------------- */
input, textarea, select {
  font: inherit;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #CED8DF;
  padding: 11px 15px;
  margin-bottom: 16px;
  background: #fff;
  color: #24436A;
  transition: border 0.14s, box-shadow 0.14s;
  box-shadow: 0 1px 5px rgba(36,67,106,0.04);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #E3B041;
  box-shadow: 0 2px 13px rgba(227,176,65,0.11);
}
label {font-weight: 500; color: #24436A; margin-bottom:6px;display:block;}

/* ---------------
 Accessibility, Misc
----------------- */
:focus:not(:focus-visible) {outline: none;}
:focus-visible {outline: 2px solid #E3B041; outline-offset: 1.5px;}
.skip-link {position: absolute;left:-999px;top:auto;z-index:9999;background:#CED8DF;color:#24436A;padding:8px 22px;border-radius:10px;transition:left 0.2s;}
.skip-link:focus {left:18px;top:16px;}

/* ---------------
  Artistic Micro Animations
----------------- */
@media (hover: hover) {
  .cta, .button, .card, .features ul li, .services ul li, .testimonial-card {
    transition:transform .18s cubic-bezier(.37,0,.63,1.14),box-shadow .24s cubic-bezier(.37,0,.73,1.2),background .23s;
  }
}

/* ---------------
  Print Clean-up
----------------- */
@media print {
  header, .main-navigation, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {display:none !important;}
  body, .container, .section, section {color:#000 !important;background:#fff !important;}
}
