/* CSS Reset and 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, 
main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  /* For artistic background splashes on desktop */
  background: #f4f6fa;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25405F;
  background: #F3E9DC;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}

/* Typography - creative artistic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #25405F;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, li, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #25405F;
}
p {
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  color: #25405F;
  border-left: 4px solid #ffbf46;
  padding-left: 24px;
  background: #fff9ed;
  border-radius: 10px;
  margin-bottom: 12px;
}
strong {
  color: #18314f;
}
.subheadline {
  color: #5e4fa2;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

a {
  color: #234fd5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffbf46;
  outline: none;
}

/* Custom creative artistic fonts and colors for display */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.text-section,
.about-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container,
.card-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card,
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40, 56, 67, 0.07);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}
.card:hover, .feature:hover {
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(40, 56, 67, 0.12);
  z-index: 2;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px 24px 32px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 20px rgba(37, 64, 95, 0.06);
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 450px;
  transition: box-shadow 0.12s;
  border-left: 7px solid #ffbf46;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px rgba(37, 64, 95, 0.13);
  border-left: 11px solid #e25924;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #6a4c35;
  margin-top: 3px;
  letter-spacing: 0.03em;
}
.star-rating {
  color: #ffbf46;
  font-weight: bold;
  font-size: 1.18rem;
  letter-spacing: 2px;
  margin-bottom: -6px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 40px;
}
.feature {
  border-left: 5px solid #5e4fa2;
  box-shadow: 0 0 0 rgba(0,0,0,0.04);
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fbf8f2;
  position: relative;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px #ffbf4696);
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px 0;
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 24px;
  color: #5e4fa2;
  background: none;
  border: 2px solid #5e4fa2;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.045em;
  margin-left: 2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-link:hover {
  background: #5e4fa2;
  color: #fff9ed;
  box-shadow: 0 4px 18px #5e4fa24d;
}

/* Artistic Buttons */
.cta-btn,
.cta-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #25405F;
  color: #fff9ed;
  border: none;
  border-radius: 27px 18px 23px 30px / 24px 32px 26px 18px;
  box-shadow: 0 7px 28px rgba(37, 64, 95, 0.12);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 6px;
  margin-top: 6px;
  transition: background 0.2s, box-shadow 0.18s, transform 0.15s;
  outline: none;
}
.cta-btn:hover,
.cta-btn-main:hover,
.cta-btn:focus,
.cta-btn-main:focus {
  background: #5e4fa2;
  color: #ffbf46;
  box-shadow: 0 13px 32px #25405f36;
  transform: translateY(-3px) scale(1.04) rotate(1deg);
}

/* Price Table (unique artistic style) */
.price-table {
  width: 100%;
  margin: 24px 0 32px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 5px 22px rgba(23,49,79,0.07);
  border-radius: 15px;
  overflow: hidden;
  font-size: 1.075rem;
}
.price-table thead th {
  background: #25405F;
  color: #fff9ed;
  padding: 16px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}
.price-table td, .price-table th {
  padding: 16px 10px;
  border-bottom: 1px solid #E5EAF1;
  text-align: left;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:nth-child(even) td {
  background: #f7f2e6;
}

/* FAQ Artistic List */
.faq-list h3 {
  color: #e25924;
  font-size: 1.11rem;
  margin-top: 16px;
  margin-bottom: 5px;
}
.faq-list p {
  margin-left: 10px;
  color: #25405F;
}

/* Footer Styles */
footer {
  background: #25405F;
  color: #fff4e1;
  padding: 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 42px 16px 24px 16px;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 260px;
}
.footer-branding img {
  height: 48px;
  margin-bottom: 8px;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.035em;
  margin-bottom: 6px;
}
.footer-branding p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  color: #ffe7bd;
  margin-top: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff9ed;
  font-size: 1rem;
  text-decoration: underline dotted;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #ffbf46;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
.footer-contact p {
  color: #f3e9dc;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.gap-24 { gap: 24px; }

/* Hamburger Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: #ffbf46;
  color: #25405F;
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  padding: 9px 17px;
  position: absolute;
  right: 20px; top: 24px;
  z-index: 101;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 3px 10px #ffbf46a4;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #25405F;
  color: #ffbf46;
  outline: none;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #25405F;
  z-index: 9999;
  padding: 40px 32px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(0.66, 0, 0.28, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #F3E9DC;
  color: #25405F;
  border: none;
  font-size: 2.6rem;
  align-self: flex-end;
  border-radius: 16px;
  padding: 3px 13px 2px 13px;
  margin-bottom: 22px;
  cursor: pointer;
  transition: color 0.18s, background 0.15s;
  box-shadow: 0 2px 9px #8f7343aa;
  z-index: 10001;
}
.mobile-menu-close:hover {
  background: #ffbf46;
  color: #25405F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff9ed;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  letter-spacing: 0.07em;
  padding: 16px 0;
  border-bottom: 1px dashed #ffbf46;
  transition: color 0.13s, background 0.15s;
}
.mobile-nav a:hover {
  color: #ffbf46;
  background: #18314f55;
  border-radius: 10px;
}

/* Main nav styles (desktop) */
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-left: 38px;
}
.main-nav a {
  color: #25405F;
  font-size: 1.06rem;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.035em;
  padding: 7px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.16s, color 0.16s;
}
.main-nav a:hover {
  border-bottom: 2.5px solid #ffbf46;
  color: #e25924;
}

header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(40, 56, 67, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}
header img {
  height: 46px;
  margin-right: 20px;
}
header .cta-btn {
  margin-left: auto;
}

/* Artistic Section Elements */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe7;
  border-radius: 25px 30px 36px 24px/32px 25px 18px 44px;
  box-shadow: 0 6px 35px #ffe5c82b;
}
.about-section {
  background: #fff9ed;
  border-left: 7px solid #5e4fa2;
  border-radius: 20px;
  box-shadow: 0 3px 16px #9ba8b745;
  padding: 32px 30px 32px 36px;
}
.static-map {
  background: #e1e7ed;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25405F;
  font-size: 1.22rem;
  font-family: 'Montserrat';
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 12000;
  background: none;
  pointer-events: none;
}
.cookie-banner-inner {
  background: #fffbe1;
  color: #25405F;
  border-radius: 22px 22px 0 0 / 20px 32px 0 0;
  box-shadow: 0 -4px 32px #9ba8b726, 0 -1.5px 0 #ffbf462d;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px 18px 32px;
  margin-bottom: 0;
  pointer-events: all;
  max-width: 570px;
  width: calc(100% - 24px);
  animation: showcookie .65s cubic-bezier(0.22,1,0.36,1);
}
@keyframes showcookie {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner-text {
  flex: 3 3 300px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
}
.cookie-banner-buttons {
  flex: 2 2 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2px;
  align-items: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #25405F;
  color: #fffbe7;
  border: none;
  border-radius: 20px;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 10px 30px;
  margin: 0 0 0 0;
  box-shadow: 0 2px 9px #5e4fa243;
  cursor: pointer;
  transition: background 0.12s, color 0.11s;
  margin-bottom: 2px;
}
.cookie-btn:not(:last-child) {
  margin-bottom: 8px;
}
.cookie-btn.accept {
  background: #ffbf46;
  color: #25405F;
}
.cookie-btn.accept:hover {
  background: #e25924;
  color: #fffbe7;
}
.cookie-btn.reject {
  background: #fffbe7;
  color: #e25924;
  border: 2px solid #e25924;
}
.cookie-btn.reject:hover {
  background: #f0ad59;
  color: #25405F;
}
.cookie-btn.settings {
  background: #5e4fa2;
  color: #fffbe7;
}
.cookie-btn.settings:hover {
  background: #25405F;
  color: #ffbf46;
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,64,95,0.48);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 13000;
  animation: fadein 0.35s cubic-bezier(0.27,1,0.55,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe7;
  color: #25405F;
  border-radius: 27px;
  padding: 40px 32px 30px 32px;
  width: 96%;
  max-width: 440px;
  box-shadow: 0 7px 55px #9ba8b740;
  animation: popscale 0.37s cubic-bezier(0.25,1.5,0.5,1.02);
  position: relative;
}
@keyframes popscale {
  from { opacity: 0; transform: scale(0.89); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2.3rem;
  background: #ffeeb4;
  color: #25405F;
  border: none;
  padding: 1px 16px;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover {
  background: #ffbf46;
}
.cookie-categories {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 14px 17px;
  border-radius: 16px;
  border-left: 5px solid #ffbf46;
  font-size: 1rem;
  gap: 4px;
}
.cookie-category-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  background: #5e4fa2;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s;
}
.cookie-toggle[data-active="true"] {
  background: #ffbf46;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fffbe7;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.18s, background 0.16s;
}
.cookie-toggle[data-active="true"]::before {
  left: 18px;
  background: #e25924;
}

/* ---------------------------------------------------- */
/* Responsive Styles */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
  }
  .footer-branding,
  .footer-contact {
    max-width: 290px;
  }
}
@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid, footer .container {
    gap: 16px;
  }
  .main-nav { gap: 24px; }
  .footer-nav { gap: 6px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.78rem; }
  h2 { font-size: 1.32rem; }
  .footer-branding, .footer-contact { max-width: 100%; }
  .features-grid, .content-grid, .card-container, .footer-nav, footer .container {
    flex-direction: column;
    align-items: stretch;
  }
  .about-section, .section {
    padding: 26px 7px;
    border-radius: 19px;
  }
  .cta-btn-main, .cta-btn { font-size: 1.05rem; padding: 12px 18px; }
  .card, .feature { min-width: 90vw; max-width: 95vw; padding: 18px 12px; }
  .testimonial-card { min-width: 92vw; padding: 18px 12px 18px 15px; }
}
@media (max-width: 640px) {
  .container { padding: 0 6px; }
  .main-nav { gap: 8px; }
  .footer-branding img { height: 35px; }
  .cta-link, .cta-btn, .cta-btn-main { font-size: 1rem; padding: 11px 11px; }
  header .container { min-height: 65px; gap: 9px; }
  .about-section { border-left-width: 4px; padding-left: 16px; }
  .section { margin-bottom: 28px; padding: 19px 1px; }
}
@media (max-width: 600px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 12px;
  }
  .main-nav, header .cta-btn {
    display: none;
  }
  header .container {
    gap: 7px;
  }
  footer .container {
    padding: 26px 4px 15px 4px;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.27rem; }
  .footer-branding img { height: 26px; }
  .footer-branding, .footer-contact, .footer-nav {
    font-size: 0.95rem;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 19px 5px 7px 12px;
    border-radius: 18px 18px 0 0 / 17px 17px 0 0;
  }
  .cookie-btn {
    min-width: 97%;
    margin: 0 auto 2px auto;
  }
}

/*-----------------------------------------------------*/
/* Helper Classes for Artistic Flourish */
.bg-accent {
  background: #ffbf46 !important;
  color: #25405F !important;
}
.bg-creative {
  background: #fff9ed !important;
  color: #e25924 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
}

/* Artistic Micro-Animations */
.card, .feature, .testimonial-card, .cta-btn,
.cta-btn-main, .cta-link, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, box-shadow 0.19s, color 0.18s, transform 0.12s;
}
.card:focus, .feature:focus, .testimonial-card:focus {
  outline: 2px solid #e25924;
  outline-offset: 1px;
}

/* Artistic decorative details */
.feature::before {
  content: '';
  background: radial-gradient(circle at 17% 55%, #ffbf4680 0%, transparent 70%);
  position: absolute;
  top: -36px; left: -42px;
  width: 80px; height: 120px;
  z-index: 0;
  opacity: .7;
  border-radius: 33% 67% 31% 69% / 63% 32% 68% 37%;
  pointer-events: none;
}
.feature img, .feature h3, .feature p {
  position: relative;
  z-index: 1;
}

/* Accessibility: focus style for links/buttons */
a:focus, button:focus {
  outline: 2.5px solid #e25924;
  outline-offset: 2px;
}

/* Visually hide for screen reader only */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ----------------------------------------------------- */