/* RESET & BASE STYLES */
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;
}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section {
    display: block;
}
body { line-height: 1; }
ol,ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img {
    max-width: 100%; display: block; border: 0;
}
*, *::before, *::after { box-sizing: border-box; }

/* CSS VARIABLES FOR CREATIVE_ARTISTIC THEME */
:root {
  --brand-primary: #1B263B; /* navy dark blue */
  --brand-secondary: #415A77; /* blue grey */
  --brand-accent: #F7F7FF; /* off-white */
  --creative1: #F24E4E;   /* creative red/pink */
  --creative2: #01706F;   /* teal green */
  --creative3: #FFB946;   /* bright orange-yellow */
  --creative4: #A883F6;   /* purple accent */
  --gray-light: #E4ECF3;
  --gray-medium: #B8C1CC;
  --shadow: rgba(44,62,80,.12);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--brand-accent);
  color: var(--brand-primary);
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--brand-accent);
  border-bottom: 2px solid var(--brand-secondary);
  box-shadow: 0 4px 18px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 0 10px 0;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 8px 15px;
  border-radius: var(--radius);
  color: var(--brand-primary);
  transition: background .22s, color .22s;
  position: relative;
}
header nav a.active, header nav a:focus, header nav a:hover {
  background: var(--creative3);
  color: var(--brand-primary);
  box-shadow: 0 2px 6px var(--shadow);
}
header nav img {
  height: 40px;
  margin-right: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 4px var(--shadow);
}

.cta-button {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  background: var(--creative4);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  margin-left: 18px;
  margin-top: 12px;
  box-shadow: 0 6px 28px -4px var(--creative4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--creative1);
  color: #fff;
  box-shadow: 0 10px 38px -8px var(--creative1);
  transform: scale(1.04);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  margin-left: auto;
  margin-right: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  z-index: 110;
  box-shadow: 0 2px 18px var(--shadow);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--creative2);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(.67,-0.15,.15,1.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--creative3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding: 14px 0;
  border-radius: var(--radius);
  width: 80vw;
  text-align: center;
  background: none;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative4);
  color: #fff;
}

@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
  }
  .cta-button {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  header nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* MAIN STRUCTURE & FLEXBOX PATTERNS */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px;
  transition: transform 0.18s, box-shadow 0.2s;
}
.card:hover, .card:focus {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 12px 32px -10px var(--creative2);
}
.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-left: 7px solid var(--creative1);
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--brand-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL FLEX PATTERNS (for grids and blocks in features section) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 28px;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  font-family: var(--font-display);
  padding: 28px 24px 24px;
  flex: 1 0 260px;
  min-width: 225px;
  max-width: 320px;
  transition: transform 0.14s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div:hover {
  transform: translateY(-6px) scale(1.02) rotate(-1deg);
  box-shadow: 0 10px 30px -8px var(--creative4);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 7px;
}
.feature-grid h3 {
  margin: 0 0 10px 0;
  color: var(--creative2);
  font-size: 1.26rem;
  font-weight: 700;
}
.feature-grid p {
  font-family: var(--font-body);
  color: var(--brand-secondary);
  margin-bottom: 0;
}

/* HERO SECTION w/ ARTISTIC ELEMENTS */
.hero {
  background: linear-gradient(115deg, var(--brand-accent) 78%, var(--creative4) 100%);
  padding: 56px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 340px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 8px 36px -12px var(--creative2);
  animation: hero-pop-in 1.35s cubic-bezier(.52,1.05,.37,.94) forwards;
}
@keyframes hero-pop-in {
  0% { opacity: 0; transform: scale(.97) translateY(20px); }
  70% { opacity: 1; transform: scale(1.03) translateY(-10px); }
  100% { opacity: 1; transform: scale(1.00) translateY(0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.3rem;
  background: linear-gradient(90deg, var(--creative1) 5%, var(--brand-primary) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}
.hero p {
  font-family: var(--font-body);
  font-size: 1.18rem;
  margin-bottom: 32px;
  color: var(--brand-secondary);
  max-width: 570px;
}
.hero .cta-button {
  margin-top: 8px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

/* SECTIONS & LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-of-type {
  margin-bottom: 0;
}
section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--creative4);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
section ul {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--brand-secondary);
  list-style: disc;
  padding-left: 21px;
}
section ul li {
  margin-bottom: 12px;
  line-height: 1.62;
}
section .trust-statement {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  border-left: 5px solid var(--creative2);
  border-radius: 13px;
  padding: 10px 20px;
  font-family: var(--font-display);
  color: var(--creative2);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
section .trust-statement img {
  height: 32px;
  width: 32px;
}

/* TESTIMONIALS */
.testimonials .testimonial-card {
  background: #fff;
  border-left: 8px solid var(--creative4);
  margin-bottom: 24px;
  box-shadow: 0 4px 24px var(--shadow);
  color: var(--brand-primary);
}
.testimonial-card p {
  font-style: italic;
  color: var(--brand-secondary);
  font-size: 1.1rem;
}
.testimonial-card span {
  margin-left: 15px;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.03rem;
}

/* CTA SECTIONS */
.cta {
  background: var(--creative2);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px -5px var(--creative2);
  margin-bottom: 40px;
  padding: 22px 0;
}
.cta-button {
  margin-left: 0;
}

/* CONTACT INFO BLOCKS */
.contact-info, .contact-info-full {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info li, .contact-info-full li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: var(--brand-secondary);
}
.contact-info li img, .contact-info-full li img {
  width: 22px;
  height: 22px;
}
.opening-hours {
  list-style: none;
  margin-bottom: 18px;
  color: var(--creative1);
  font-size: 1.01rem;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border-radius: 11px;
  padding: 12px 14px;
  font-style: italic;
  font-size: 0.97rem;
}
.map-embed img {
  height: 30px;
  width: 30px;
}

/* THANK YOU PAGE NEXT-STEPS */
.next-steps {
  margin: 22px 0 22px 0;
  background: var(--gray-light);
  padding: 16px 22px;
  border-radius: 11px;
  font-family: var(--font-body);
  color: var(--brand-secondary);
  box-shadow: 0 2px 10px var(--shadow);
}
.next-steps ul {
  list-style: disc;
  padding-left: 24px;
}
.next-steps li {
  margin-bottom: 10px; font-size: 1.01rem;
}

/* LEGAL/TEXT SECTIONS */
.legal .text-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--shadow);
  padding: 28px 24px 24px 24px;
  max-width: 760px;
}
.legal h2 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin: 20px 0 8px 0;
}

/* TEAM SECTION, ABOUT */
.team ul {
  padding-left: 24px;
}
.team li strong {
  color: var(--creative4);
}

/* TRUST BADGES */
.trust-badges {
  display: flex; gap:16px; margin-top: 24px;
}
.trust-badges img {
  width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px var(--shadow);
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--brand-secondary);
  color: #fff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  padding: 34px 0 24px 0;
  margin-top: 64px;
  box-shadow: 0 -6px 36px -14px var(--brand-primary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--creative3);
  margin-bottom: 18px;
}
footer nav a {
  color: var(--creative3);
}
footer nav a:hover { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/* COOKIE CONSENT COMPONENTS */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: #fff;
  color: var(--brand-primary);
  border-top: 5px solid var(--creative3);
  box-shadow: 0 -6px 32px -10px var(--creative2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 18px;
  gap: 22px;
  font-family: var(--font-body);
  animation: slide-up-cookie 0.7s cubic-bezier(.52,1.05,.37,.94);
  font-size: 1.03rem;
}
@keyframes slide-up-cookie {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  max-width: 830px;
  text-align: center;
  color: var(--brand-primary);
}
.cookie-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1.07rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.19s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: var(--creative2);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--creative1);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--creative3);
  color: var(--brand-primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 2px 8px var(--shadow);
  transform: translateY(-2px) scale(1.04);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px -12px var(--creative4);
  padding: 32px 32px 18px;
  max-width: 95vw;
  min-width: 312px;
  width: 400px;
  animation: modal-pop 0.44s cubic-bezier(.73,1.38,.41,.89);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-pop {
  from { opacity: 0; transform: translate(-50%,-35%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1.0); }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.37rem;
  margin-bottom: 7px;
  text-align: center;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--creative2);
}
.cookie-category .essential {
  font-weight: bold;
  color: var(--creative2);
}
.cookie-modal-actions {
  display: flex;
  gap: 22px;
  margin-top: 15px;
  justify-content: center;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--brand-secondary);
  position: absolute;
  top: 18px; right: 18px;
  cursor: pointer;
}

/* RESPONSIVE – MOBILE */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section, section {
    padding: 26px 0;
    margin-bottom: 32px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 95vw;
    max-width: 100vw;
  }
  footer {
    border-radius: 0;
    padding: 18px 0 11px 0;
    margin-top: 32px;
  }
  .cta {
    padding: 16px 0;
    margin-bottom: 24px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 16px 9px;
    font-size: 0.98rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 96vw;
    width: 96vw;
    padding: 20px 6px 13px;
  }
}

/* TYPOGRAPHY – ARTISTIC STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem; margin-bottom: 18px;
}
h2 {
  font-size: 2rem; margin-bottom: 16px;
}
h3 {
  font-size: 1.28rem; margin-bottom: 11px;
  color: var(--creative2);
}
h4, h5, h6 { font-size: 1.12rem; }

strong { color: var(--creative1); font-weight: 800; }

/* ANIMATION & EFFECTS */
a, .cta-button, .card, .feature-grid > div, .cookie-btn, .cookie-modal {
  transition: background .16s, box-shadow .18s, color .16s, transform .13s;
}
a:focus { outline: 2px solid var(--creative4); outline-offset: 1px; }

hr {
  border: 0; border-bottom: 1px solid var(--gray-medium); margin: 30px 0;
}

/* UNIQUE ARTISTIC DETAILS */
.feature-grid > div::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: var(--creative3);
  border-radius: 6px;
  margin: 18px 0 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 120px;
  z-index: 0;
  background: radial-gradient(circle at 20% 48%, var(--creative3) 10%, transparent 80%),
              radial-gradient(circle at 90% 30%, var(--creative4) 6%, transparent 63%);
  opacity: 0.18;
  pointer-events: none;
}

/* UTILITY CLASSES */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 510px) {
  .container {
    padding: 0 2vw;
  }
  .feature-grid > div {
    padding: 15px 7px 14px;
  }
  h1, .hero h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}

/* END */
