/* 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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f4f4f4;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

/* CUSTOM FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* BRAND COLORS (for fallback variables) */
:root {
  --color-primary: #264653;
  --color-secondary: #2a9d8f;
  --color-accent: #f4f4f4;
  --color-warning: #e76f51;
  --color-info: #e9c46a;
  --color-light: #fdfdfd;
  --color-dark: #1a1a1d;
}

/* CREATIVE & ARTISTIC COLOR POPS */
:root {
  --creative-cyan: #4ecdc4;
  --creative-magenta: #b83275;
  --creative-yellow: #ffe066;
}

/* TYPOGRAPHY */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--color-accent);
  color: #222;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.8rem; text-shadow: 1px 2px 0 var(--creative-cyan), 0 2px 8px #fff6; }
h2 { font-size: 2rem; color: var(--creative-magenta); }
h3 { font-size: 1.4rem; color: var(--creative-yellow); font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 700; }
p, ul, ol, li, dl, dd {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #233;
}
strong { color: var(--color-secondary); }

/* CONTAINER STRUCTURE */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SECTION & LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 24px;
  box-shadow: 0 6px 32px -12px rgba(43,70,79,0.10);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px -8px rgba(36,70,83,0.13);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: 0 8px 36px -8px var(--creative-cyan);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  gap: 12px;
}

.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;
  margin-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px -8px var(--creative-magenta);
  min-width: 220px;
  text-align: center;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-author {
  font-size: 0.98rem;
  color: var(--creative-magenta);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.stars {
  color: var(--creative-yellow);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 16px -6px var(--creative-cyan);
  margin-bottom: 20px;
  transition: box-shadow .2s;
}
.feature-item:hover {
  box-shadow: 0 8px 30px -8px var(--creative-magenta);
}

/* HEADER (NAVIGATION) */
header {
  background: linear-gradient(90deg, var(--color-primary) 60%, var(--creative-cyan) 100%);
  color: #fff;
  box-shadow: 0 2px 8px -2px #bbb8;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 20;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 16px 0 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  color: #fff;
  font-size: 1.07rem;
  margin-right: 4px;
  padding: 6px 14px;
  border-radius: 18px;
  position: relative;
  font-weight: 600;
  transition: background .2s, color .2s, box-shadow .2s;
}
header nav a:hover {
  background: var(--creative-magenta);
  color: #fff;
  box-shadow: 0 3px 12px -4px #b8327580;
}

header nav img {
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: 0 14px 0 auto;
  z-index: 51;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(140deg, var(--color-secondary), var(--creative-magenta) 65%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.5,1.4,.3,1), opacity .25s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--creative-yellow);
  color: var(--color-dark);
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 26px 28px 6px 0;
  border-radius: 100px;
  padding: 8px 22px;
  cursor: pointer;
  box-shadow: 0 3px 10px -3px #fff9;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover {
  background: var(--creative-cyan);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 40px 22px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 16px;
  transition: background 0.18s, color .17s;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.mobile-nav a:hover {
  background: var(--creative-yellow);
  color: var(--color-primary);
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 50px 0 60px 0;
  background: linear-gradient(105deg, var(--creative-cyan) 10%, var(--color-secondary) 90%);
  border-radius: 0 0 60px 60px/30px 45px;
  box-shadow: 0 8px 36px -12px var(--creative-cyan);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 560px;
  gap: 28px;
  color: #fff;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 6px;
}

/* FEATURE GRID (INDEX SPECIAL) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 36px 0 0 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px -9px var(--color-secondary);
  flex: 1 1 180px;
  min-width: 220px;
  min-height: 230px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow .23s, transform .23s;
  margin-bottom: 20px;
  border-left: 7px solid var(--creative-cyan);
}
.feature-grid li:hover {
  box-shadow: 0 12px 38px -8px var(--creative-magenta);
  transform: translateY(-6px) scale(1.02);
  border-left: 7px solid var(--creative-yellow);
}
.feature-grid img {
  width: 42px;
  margin-bottom: 12px;
}

/* STEPS LIST, OL (INDEX HOW IT WORKS) */
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 24px;
  align-items: flex-start;
}
.steps-list li {
  background: #fff;
  border-radius: 15px;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 3px 18px -6px var(--color-primary);
  flex: 1 1 190px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
}
.steps-list img {
  width: 36px;
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}

/* TEXT SECTION & MAP PLACEHOLDER */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.text-section ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05em;
  margin-bottom: 0;
}
.map-placeholder {
  background: var(--creative-yellow);
  color: var(--color-primary);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 3px 18px -17px var(--color-secondary);
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  padding: 12px 36px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .18s;
  border: none;
  box-shadow: 0 4px 24px -4px var(--creative-cyan);
  margin-top: 12px;
  margin-bottom: 12px;
}
.cta.primary {
  background: var(--creative-magenta);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--creative-cyan);
  color: var(--color-primary);
  transform: scale(1.04);
}
.cta.secondary {
  background: var(--color-secondary);
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--creative-yellow);
  color: var(--color-primary);
}

/* FAQ PAGE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px -8px var(--creative-yellow);
  padding: 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.faq-item:hover {
  box-shadow: 0 10px 32px -7px var(--creative-cyan);
}
.faq-item h2 {
  font-size: 1.18rem;
  color: var(--color-primary);
}
.faq-item div {
  color: #222;
  font-size: 1.04rem;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: var(--color-primary);
  padding: 36px 0 22px 0;
  color: #fff;
  text-align: center;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 48px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 6px 13px;
  border-radius: 12px;
  transition: background .19s, color .19s;
}
footer nav a:hover {
  background: var(--creative-magenta);
  color: #fff;
}
.footer-contact {
  font-size: 0.96rem;
  color: var(--creative-yellow);
  margin-top: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--color-secondary) 60%, var(--creative-yellow) 100%);
  color: var(--color-dark);
  z-index: 4000;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 -2px 16px -4px #2226;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cc-slide-in .40s cubic-bezier(.3,1.8,.5,.95);
}
@keyframes cc-slide-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.03rem;
  transition: background .18s, color .18s;
}
.cookie-consent-banner .accept {
  background: var(--creative-cyan);
  color: var(--color-primary);
}
.cookie-consent-banner .accept:hover {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-consent-banner .reject {
  background: var(--color-warning);
  color: #fff;
}
.cookie-consent-banner .reject:hover {
  background: var(--color-primary);
}
.cookie-consent-banner .settings {
  background: var(--color-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-consent-banner .settings:hover {
  background: var(--creative-magenta);
  color: #fff;
  border-color: var(--creative-magenta);
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,70,83,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4100;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 42px -10px var(--creative-cyan);
  padding: 36px 38px 24px 38px;
  max-width: 410px;
  width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modal-pop .25s cubic-bezier(.4,1,.4,1.2);
}
@keyframes modal-pop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-dialog h2 {
  color: var(--creative-magenta);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.08rem;
}
.cookie-category input[type="checkbox"] {
  width: 1.22em;
  height: 1.22em;
  accent-color: var(--color-secondary);
}
.cookie-modal-dialog .close-modal {
  background: var(--creative-cyan);
  color: var(--color-primary);
  border: none;
  border-radius: 16px;
  font-size: 1.12rem;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 16px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-modal-dialog .close-modal:hover { background: var(--creative-magenta); color: #fff; }

/* FORMS & INPUTS */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-secondary);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  background: #fff;
  color: var(--color-primary);
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid var(--color-primary);
  outline: none;
}

/* GENERAL FLEXBOX ADJUSTMENTS */
/* Ensuring all flex containers follow the requirements */
.container, .content-wrapper, .feature-grid, .testimonial-list, .card-container, .content-grid,
.text-image-section, .feature-item, .steps-list, .faq-list, .footer-contact {
  gap: 20px;
}

/* SPACING BETWEEN CARDS AND SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card, .feature-item, .faq-item {
  margin-bottom: 20px;
}

/* VISUAL EFFECTS & MICRO-INTERACTIONS */
a, .cta, button {
  transition: color .19s, background .19s, box-shadow .22s, transform .18s;
}
a:focus, .cta:focus, button:focus {
  outline: 2px solid var(--color-magenta);
  outline-offset: 2px;
}

/* ADDITIONAL ARTISTIC ELEMENTS */
h2:before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 4px;
  background: var(--creative-magenta);
  margin-right: 13px;
  vertical-align: middle;
  border-radius: 2px;
}


/* MEDIA QUERIES (MOBILE FIRST) */
@media (max-width: 1020px) {
  .container { max-width: 95vw; }
  .feature-grid, .steps-list, .testimonial-list {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .steps-list, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .hero .content-wrapper { max-width: 100vw; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
  .section, section {
    padding: 24px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 36px 0 36px 0;
    border-radius: 0 0 40px 40px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.1rem; }
  .section, section {
    padding: 10px 0px;
    margin-bottom: 22px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.96rem;
  }
}

/* UTILITIES */
.d-none { display: none !important; }
.z-top { z-index: 9999; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Overriding HTML elements for artistic feel */
ul li::marker, ol li::marker { content: none; }
ul li:before, ol li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(100deg, var(--creative-cyan), var(--creative-yellow));
  vertical-align: middle;
}
/* Remove default marker for special "feature-grid"/steps-list items */
.feature-grid li:before, .steps-list li:before, .faq-list .faq-item:before { display: none !important; }

/* For FAQ dt/dd styling on About/How It Works page dl */
dl {
  margin-bottom: 40px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 4px;
  margin-top: 18px;
  font-weight: 700;
}
dd {
  margin-left: 0px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

/* ARTISTIC ACCENTS */
section::after {
  content: '';
  display: block;
  width: 30px; height: 6px;
  margin: 18px auto 0 auto;
  background: linear-gradient(90deg, var(--creative-cyan), var(--creative-magenta));
  border-radius: 3px;
  opacity: 0.25;
}


/* END OF CSS */