/* RESET & BASE TYPOGRAPHY ------------------------------------------------ */
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,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;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F9FAF8;
  color: #185C6F;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #185C6F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #54B3A8;
  text-decoration: underline;
}

body, button, input, textarea {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* FONT FAMILIES ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #185C6F;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #368085;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
}
p {
  margin-bottom: 16px;
}

/* BRIGHT, PLAYFUL DESIGN COLORS --------------------------------------------- */
:root {
  --qq-primary: #185C6F;
  --qq-secondary: #54B3A8;
  --qq-accent: #F9FAF8;
  --qq-yellow: #FFE066;
  --qq-pink: #FF82A9;
  --qq-violet: #9568D9;
  --qq-orange: #FFB460;
  --qq-blue: #3ED0EE;
}

/* CONTAINER & LAYOUT ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--qq-accent);
  border-radius: 28px;
  box-shadow: 0 4px 14px 0 rgba(24,92,111,0.07);
}

/* FLEX LAYOUTS & GAPS ------------------------------------------------------ */
.features-grid, .card-container, .content-grid, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(84,179,168,0.13);
  background: #fff;
  overflow: hidden;
  padding: 24px;
  min-width: 220px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 28px rgba(150,104,217,0.14);
}
.content-grid {
  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: 12px;
  background: #F9FAF8;
  border: 2px solid var(--qq-blue);
  border-radius: 20px;
  padding: 28px 32px 24px 32px;
  box-shadow: 0 2px 8px rgba(84,179,168,0.09);
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #333;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #9568D9;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION ------------------------------------------------------------- */
.hero {
  background: linear-gradient(115deg, var(--qq-secondary) 70%, var(--qq-yellow) 100%);
  border-radius: 0 0 32px 32px;
  padding: 48px 0 28px 0;
  margin-bottom: 48px;
  box-shadow: 0 10px 32px rgba(24,92,111,0.08);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(24,92,111,0.13);
}
.hero .subheadline {
  color: var(--qq-yellow);
  text-shadow: 0 2px 8px rgba(24,92,111,0.08);
}
.hero .btn-primary {
  margin-top: 16px;
}

/* HEADER & NAVBAR ---------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(24,92,111,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header a img {
  display: block;
  height: 40px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--qq-primary);
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--qq-blue);
  color: #fff;
}
.btn-primary {
  display: inline-block;
  background: var(--qq-yellow);
  color: var(--qq-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.08rem;
  border: none;
  border-radius: 18px;
  padding: 12px 32px;
  box-shadow: 0 2px 10px rgba(255,224,102,0.15);
  cursor: pointer;
  transition: background 0.25s, color 0.18s, box-shadow 0.16s, transform 0.2s;
  margin-left: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--qq-pink);
  color: #fff;
  box-shadow: 0 5px 25px 0 rgba(255,130,169,0.15);
  transform: scale(1.05) rotate(-4deg);
}

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--qq-primary);
  margin-left: 18px;
  cursor: pointer;
  z-index: 200;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--qq-pink);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1500;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.1,.3,1);
  display: flex;
  flex-direction: column;
  padding-top: 48px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--qq-primary);
  cursor: pointer;
  z-index: 1600;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--qq-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 30px 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--qq-primary);
  padding: 12px 0 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--qq-blue);
  color: #fff;
}

/* MAIN CONTENT & LISTS ----------------------------------------------------- */
ul, ol {
  margin: 0 0 18px 0;
  padding: 0;
  list-style-type: none;
}
ul li, ol li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  font-size: 1.08rem;
}
ul li img, ol li img {
  height: 1.7em;
  width: 1.7em;
  margin-right: 8px;
  border-radius: 5px;
}
.text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(84,179,168,0.09);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.text-section h2, .text-section h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #185C6F;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: var(--qq-primary);
  color: #fff;
  padding: 40px 0 18px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}
footer a img {
  height: 38px;
  margin-bottom: 8px;
}
footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 2px;
}
footer .footer-menu a {
  color: var(--qq-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
  padding: 5px 10px;
  border-radius: 8px;
}
footer .footer-menu a:hover,
footer .footer-menu a:focus {
  color: var(--qq-pink);
  background: rgba(255,224,102,0.11);
}
footer .footer-contact {
  color: #ffffffcc;
  font-size: 1rem;
  margin-bottom: 2px;
}
footer .footer-copy {
  color: #d7fbf7;
  font-size: 0.98rem;
  margin-top: 2px;
}

/* BUTTONS & INTERACTIONS --------------------------------------------------- */
button, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn-primary {
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 32px;
  background: var(--qq-yellow);
  color: var(--qq-primary);
  box-shadow: 0 2px 10px rgba(255,224,102,0.08);
  margin-bottom: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--qq-pink);
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 18px rgba(255,130,169,0.13);
}

/* COOKIE CONSENT BANNER ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--qq-violet);
  color: #fff;
  z-index: 2000;
  padding: 24px 18px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -4px 32px rgba(149,104,217,0.18);
  animation: cookieSlideIn 0.4s;
  font-size: 1.04rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border:none;
  margin: 0;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 7px rgba(24,92,111,0.07);
}
.cookie-banner .accept {
  background: var(--qq-yellow);
  color: var(--qq-primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--qq-pink);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--qq-pink);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--qq-orange);
  color: var(--qq-primary);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--qq-primary);
  border: 2px solid var(--qq-yellow);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--qq-yellow);
  color: var(--qq-primary);
  border: 2px solid var(--qq-yellow);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE SETTINGS MODAL ---------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,92,111,0.33);
  z-index: 3050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalAppear 0.38s;
}
.cookie-modal .modal-box {
  background: #fff;
  color: #185C6F;
  border-radius: 26px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 10px 28px rgba(150,104,217,0.13);
  padding: 38px 36px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 3100;
}
.cookie-modal .modal-box h3 {
  font-size: 1.4rem;
  color: var(--qq-violet);
  margin-bottom: 8px;
}
.cookie-modal .modal-box .cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 11px;
}
.cookie-modal .modal-box label {
  font-size: 1.09rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--qq-primary);
}
.cookie-modal .modal-box .category-toggle {
  accent-color: var(--qq-secondary);
  margin-left: 10px;
}
.cookie-modal .modal-box .ess {
  color: var(--qq-green, #32ce5a);
  font-style: italic;
  font-size: 0.99rem;
  margin-left: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  color: var(--qq-primary);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE: MOBILE FIRST ------------------------------------------------- */
@media (max-width: 1180px) {
  .container { max-width: 98vw; }
}
@media (max-width: 950px) {
  header nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    max-width: 100vw;
    padding-left: 1.5vw; padding-right: 1.5vw;
  }
  header .container {
    flex-direction: row;
    gap: 14px;
    padding-left: 6px;
    padding-right: 6px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    margin-left: 0;
    padding: 11px 23px;
    font-size: 1rem;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 18px;
    border-radius: 0 0 20px 20px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 5px;
    border-radius: 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card, .text-section, .testimonial-card {
    padding: 18px 10px;
    border-radius: 13px;
  }
  .testimonial-card {
    padding-left: 16px; padding-right: 16px;
  }
  .features-grid {
    gap: 14px;
  }
  .footer-menu {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  .testimonial-card { font-size: 1rem; }
  .text-section { padding: 13px 4px; }
  .cookie-modal .modal-box { padding: 18px 7vw 15px 7vw; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 0.99rem; }
}

/* FLEX-DIRECTION FOR COLUMNS ON MOBILE ------------------------------------- */
@media (max-width: 940px) {
  .features-grid, .card-container, .content-grid, .footer-menu {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* FUN & PLAYFUL TYPOGRAPHY ACCENTS ----------------------------------------- */
h1, h2, h3 {
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255,224,102,0.04);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.16;
}
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }

/* ANIMATED ACCENTS --------------------------------------------------------- */
@keyframes popBar {
  0% { transform: scaleX(0.25); opacity: 0.3; }
  65% { transform: scaleX(1.1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}
.animated-bar {
  width: 65px; height: 6px;
  background: var(--qq-pink);
  border-radius: 5px;
  margin: 8px 0 18px 0;
  animation: popBar 1s .2s ease-out both;
}
/* Add .animated-bar HTML element after h2/h3 manually if you want playful underline */

/* ENERGETIC ICON ACCENTS --------------------------------------------------- */
.features-grid > div {
  background: var(--qq-accent);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(62,208,238,0.07);
  padding: 22px 20px 20px 20px;
  text-align: center;
  flex: 1 1 180px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.19s, transform 0.18s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 28px rgba(84,179,168,0.18);
  transform: translateY(-6px) scale(1.03) rotate(1deg);
}
.features-grid > div img {
  margin-bottom: 15px;
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background: var(--qq-yellow);
  box-shadow: 0 1px 7px rgba(255,224,102,0.09);
  transition: background 0.2s;
}
.features-grid > div:hover img {
  background: var(--qq-pink);
}
.features-grid > div h3 {
  color: var(--qq-primary);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.features-grid > div p {
  color: #3b3b3b;
  font-size: 1.03rem;
}

/* OTHER SECTIONS ----------------------------------------------------------- */
section {
  width: 100%;
  margin-bottom: 32px;
}
/* For clarity, apply .section class to major logical groupings if not present */

/* HIGHLIGHTED PRICING ------------------------------------------------------ */
ul li strong, ul li b {
  color: var(--qq-violet);
  font-weight: 700;
}
h3 {
  color: var(--qq-violet);
}

/* MICROTANSITIONS/HOVER EFFECTS -------------------------------------------- */
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .features-grid > div:hover {
  box-shadow: 0 8px 30px rgba(255,130,169,0.10), 0 4px 14px rgba(30,90,110,0.04);
  transform: scale(1.03) rotate(-2deg) translateY(-2px);
}
.testimonial-card:hover {
  box-shadow: 0 5px 15px rgba(30,90,110,0.10), 0 1.5px 4.5px rgba(149,104,217,0.05);
  transform: scale(1.015);
}

/* FORMS & INPUTS ----------------------------------------------------------- */
input, textarea, select {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--qq-secondary);
  margin-bottom: 16px;
  outline: none;
  transition: border 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 5px rgba(24,92,111,0.03);
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--qq-violet);
  box-shadow: 0 2px 10px rgba(149,104,217,0.07);
}

/* UTILITY CLASSES ---------------------------------------------------------- */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }

/* Z-INDEX MANAGEMENT ------------------------------------------------------- */
header { z-index: 40; }
.mobile-menu { z-index: 1500; }
.mobile-menu-close { z-index: 1600; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 3050; }

/* VISUAL CUES / BADGES / FUN ------------------------------------------------*/
.badge {
  display: inline-block;
  background: var(--qq-violet);
  color: #fff;
  border-radius: 14px;
  padding: 2px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 1px 7px rgba(149,104,217,0.16);
  margin-left: 8px;
}

/* OVERRIDES TO ENSURE FLEXBOX-ONLY LAYOUTS ---------------------------------- */
/* No grid or columns used anywhere */

/* END OF CSS --------------------------------------------------------------- */
