/* 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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a2332;
  background: #F7F9FB;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #154265;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #31B281;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* Brand Colors & Artistic Pallete */
:root {
  --primary: #154265;
  --secondary: #31B281;
  --accent: #F7F9FB;
  --art-orange: #F18A2C;
  --art-pink: #E8537A;
  --art-purple: #836AFF;
  --art-yellow: #FFF176;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: bold;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, dl, blockquote, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: #253140;
  font-size: 1rem;
  margin-bottom: 14px;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-style: italic;
  color: var(--art-pink);
  background: rgba(255,247,242,0.65);
  border-left: 5px solid var(--secondary);
  padding: 20px 24px 18px 18px;
  margin-bottom: 4px;
  border-radius: 22px 8px 28px 12px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* Layout Containers */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(49,178,129,0.10), 0 1.5px 7px rgba(21,66,101,0.095);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s, box-shadow .18s;
}
.card:hover, .card:focus {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 10px 40px rgba(49,178,129,0.20), 0 2px 12px rgba(21,66,101,0.13);
  z-index: 2;
}
.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;
  border-radius: 28px 12px 18px 22px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(133,106,255,0.10), 0 1.5px 10px rgba(21,66,101,.10);
  margin-bottom: 20px;
  flex-direction: column;
  border-left: 5px solid var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(241,138,44,0.07), 0 1.5px 7px rgba(21,66,101,0.088);
  padding: 22px 18px;
  margin-bottom: 20px;
}

/* Artistic Decorations for Creative Flair */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: 18px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 70% 50%, var(--art-pink), transparent 82%);
  opacity: .13;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.section:nth-child(even):before {
  left: 0;
  right: unset;
  background: radial-gradient(circle at 10% 90%, var(--art-purple), transparent 82%);
}

/* List & Icon Lists */
ul li, ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: #253140;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(49,178,129,0.16));
}
ol li {
  list-style-type: decimal;
  padding-left: 24px;
}

/* Nav */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px rgba(49,178,129, .07);
  padding: 0;
  margin-bottom: 22px;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color .16s;
  position: relative;
  padding: 2px 0;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--art-orange);
  transition: width .2s;
  margin-top: 3px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--secondary);
}

.cta-btn, .secondary-cta-btn {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border: none;
  border-radius: 22px;
  background: var(--secondary);
  color: #fff;
  font-size: 1.15rem;
  padding: 12px 34px 12px 34px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(49,178,129, 0.12);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-left: 18px;
  margin-top: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--art-pink);
  color: #fff;
  box-shadow: 0 4px 22px rgba(232,83,122,0.20), 0 1.5px 11px rgba(21,66,101,0.12);
  transform: scale(1.05);
}
.secondary-cta-btn {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.secondary-cta-btn:hover, .secondary-cta-btn:focus {
  background: #fff;
  color: var(--secondary);
  border-color: var(--art-orange);
}

/* Hamburger for Mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  transition: background 0.18s;
  z-index: 300;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--art-orange);
}

/* Mobile Menu Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(to bottom right, #fff 80%, var(--art-pink) 120%);
  box-shadow: -6px 0 44px rgba(21,66,101,.12);
  z-index: 9999;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.8,0.1,0.2,1), box-shadow .2s;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  box-shadow: -6px 0 40px rgba(133,106,255, 0.19);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--art-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--primary);
  padding: 12px 8px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* Show/Hide Menu and Hide Main Nav on Mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Banner */
.hero {
  background: linear-gradient(120deg, var(--art-purple) 0%, var(--secondary) 48%, #fff 100%);
  color: #fff;
  padding-top: 52px;
  padding-bottom: 38px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  display: block;
  position: absolute;
  left: 60px;
  top: -48px;
  width: 240px;
  height: 200px;
  background: radial-gradient(circle at 70% 55%, var(--art-orange) 0%, transparent 85%);
  opacity: .21;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-btn {
  background: var(--art-orange);
  color: #fff;
  margin-top: 18px;
  box-shadow: 0 5px 26px rgba(241,138,44, .18);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-accordion dt {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  padding: 12px 22px 10px 18px;
  background: var(--secondary);
  color: #fff;
  border-radius: 16px 16px 0 0;
  transition: background .13s;
  font-size: 1.13rem;
  font-weight: 600;
}
.faq-accordion dt:hover, .faq-accordion dt:focus {
  background: var(--art-orange);
}
.faq-accordion dd {
  margin: 0 0 10px 0;
  padding: 16px 22px 18px 18px;
  background: #fff;
  border-radius: 0 0 15px 13px;
  color: #39435C;
  border-left: 4px solid var(--art-pink);
  font-size: 1rem;
  box-shadow: 0 2px 13px rgba(49,178,129,0.09);
}

/* Footer */
footer {
  background: #fff;
  box-shadow: 0 -2px 11px rgba(21,66,101,.04);
  padding: 32px 0 16px 0;
  margin-top: 44px;
}
footer .container {
  align-items: flex-end;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: bold;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--art-orange);
}
footer p {
  font-size: 0.95rem;
  color: #39435C;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--accent) 90%, var(--secondary) 120%);
  border-top: 2.5px solid var(--art-orange);
  box-shadow: 0 -4px 24px rgba(49,178,129,.09);
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  z-index: 3000;
  animation: cookieBannerIn .7s cubic-bezier(0.8,0.1,0.2,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  max-width: 560px;
}
.cookie-banner .cookie-btn {
  margin-left: 4px;
  margin-right: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 16px;
  font-weight: 600;
  background: var(--secondary);
  color: #fff;
  border: none;
  transition: background .17s, transform .12s;
}
.cookie-banner .cookie-btn.reject {
  background: var(--art-pink);
}
.cookie-banner .cookie-btn.settings {
  background: var(--primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--art-orange);
  color: #fff;
  transform: scale(1.04);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,66,101,0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  transition: opacity .3s;
  opacity: 1;
  visibility: visible;
  animation: cookieModalFadeIn .32s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 42px 36px 30px 36px;
  border-radius: 22px 24px 14px 14px;
  box-shadow: 0 10px 32px rgba(241,138,44, 0.12);
  min-width: 290px;
  max-width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--secondary);
  cursor: pointer;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 13px;
  padding: 16px 18px;
  font-size: 1.08rem;
}
.cookie-option label {
  font-family: 'Montserrat',sans-serif;
  color: var(--primary);
}
.cookie-option input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--secondary);
}
.cookie-option.essential label {
  font-weight: bold;
  color: var(--art-orange);
}

/* Hide cookie modal/banner by default - shown by JS */
.cookie-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.cookie-banner { display: none; }
.cookie-banner.active { display: flex; }

/* Utilities */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row !important; }
.flex-column { display: flex; flex-direction: column !important; }

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { gap: 12px; }
  .section { padding: 28px 6px; margin-bottom: 34px; }
  .hero { padding-top: 32px; padding-bottom: 24px; margin-bottom: 28px; }
  .hero:before { width: 110px; height: 90px; left: 28px; top: -24px; }
  .footer-nav { gap: 12px 16px; }
  .cta-btn, .secondary-cta-btn { font-size: 1.06rem; padding: 11px 18px 11px 19px; margin-left: 0; }
  .testimonial-card { padding: 13px; }
  .feature-item { padding: 12px 6px; }
  ul li, ol li { padding-left: 32px; font-size: 0.99rem; }
  .card { padding: 13px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 17px; padding: 13px 5px 10px 8px; }
}
@media (max-width: 500px) {
  h1, h2 { font-size: 1.15rem; }
  .content-wrapper, .text-section { gap: 10px; }
}
/* Text-Image Flex Direction for Mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

/* Artistic Hover details for all cards and buttons */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .16s, transform .16s, border-color .18s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(241,138,44,0.13), 0 2px 16px rgba(133,106,255,0.09);
  transform: scale(1.012);
  border-left-color: var(--art-purple);
  z-index: 3;
}

/* Misc */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}

/* Accessibility & Focus style */
a:focus, button:focus, .cta-btn:focus, .secondary-cta-btn:focus {
  outline: 2.5px dashed var(--art-yellow);
  outline-offset: 2.5px;
}
::selection {
  background: var(--art-orange);
  color: #fff;
}

/* Input & Forms (if present in contact or future pages) */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid var(--secondary);
  border-radius: 12px;
  padding: 10px 14px;
  transition: border-color .16s;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 12px;
  background: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--art-orange);
}

/* Hide artifical extra whitespace on very small screens */
@media (max-width: 380px) {
  .section { padding: 12px 2px; }
  .card, .testimonial-card { padding: 7px; }
}

/* End of Style */
