/* RESET & BASELINE */
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, 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 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7FAFB;
  color: #233347;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #44BFA3;
  text-decoration: none;
  transition: color 0.25s;
}
a:focus {
  outline: 2px solid #44BFA3;
  outline-offset: 2px;
}
a:hover {
  color: #1A8D76;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6, .cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(68, 191, 163, 0.05), 0 1.5px 7px 0 rgba(35,51,71,0.05);
  transition: box-shadow 0.25s;
}
.section:hover {
  box-shadow: 0 7px 28px 0 rgba(68, 191, 163, 0.13), 0 3px 15px 0 rgba(35,51,71,0.09);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(35,51,71, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
  min-width: 220px;
  flex: 1 1 240px;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(68, 191, 163, 0.18);
}
.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: #DCE2E7;
  border-radius: 20px;
  margin-bottom: 20px;
  color: #233347;
  box-shadow: 0 2px 13px 0 rgba(35, 51, 71, 0.08);
  transition: box-shadow 0.25s, background 0.2s;
  font-size: 1.06rem;
  position: relative;
  min-width: 200px;
}
.testimonial-card p {
  flex: 1;
  font-style: italic;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #44BFA3;
  font-size: 0.98em;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px 0 rgba(68, 191, 163, 0.13), 0 2px 9px 0 rgba(35,51,71,0.10);
  background: #fffbea;
  color: #233347;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  border-bottom: 4px solid #44BFA3;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 3px 10px rgba(68, 191, 163, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02em;
  color: #233347;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom 0.20s;
}
header nav a:hover, header nav a.active {
  color: #44BFA3;
  border-bottom: 2px solid #44BFA3;
}
.cta-button {
  background: #44BFA3;
  color: #fff;
  border-radius: 999px;
  padding: 11px 28px;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 25px rgba(68, 191, 163, 0.11);
  border: none;
  transition: background 0.19s, color 0.18s, box-shadow 0.2s, transform 0.15s;
  text-shadow: 0 2px 8px rgba(35,51,71,0.07);
  margin-left: 12px;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.cta-button:focus, .cta-button:hover {
  background: #14a384;
  color: #fffbea;
  box-shadow: 0 8px 40px rgba(68, 191, 163, 0.18);
  transform: scale(1.045) rotate(-2deg);
}

/* MAIN HEADINGS */
h1 {
  font-size: 2.7rem;
  color: #233347;
  margin-bottom: 14px;
  line-height: 1.15;
  word-break: break-word;
}
h2 {
  font-size: 2rem;
  color: #44BFA3;
  margin-bottom: 10px;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  color: #1A8D76;
  margin-bottom: 7px;
  line-height: 1.22;
}
h4, h5, h6 {
  color: #233347;
}

/* PLAYFUL & DYNAMIC ACCENTS */
.section {
  position: relative;
  /* Fun shapes */
  overflow: visible;
}
.section::before {
  content: '';
  position: absolute;
  left: -25px;
  top: -25px;
  width: 54px;
  height: 54px;
  background: #FDED65;
  opacity: 0.42;
  border-radius: 20% 72% 65% 23%/59% 41% 63% 44%;
  z-index: 0;
  pointer-events: none;
  animation: wiggle 3.2s infinite ease-in-out;
}
.section:nth-child(odd)::after {
  content: '';
  position: absolute;
  right: -32px;
  bottom: -18px;
  width: 32px;
  height: 58px;
  background: #44BFA3;
  opacity: 0.16;
  border-radius: 60% 33% 72% 18%/44% 52% 62% 47%;
  z-index: 0;
  pointer-events: none;
  animation: wiggle2 3.8s infinite alternate;
}
@keyframes wiggle {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  35% {
    transform: translateY(-5px) rotate(7deg) scale(1.05);
  }
  55% {
    transform: translateY(6px) rotate(-6deg) scale(0.99);
  }
}
@keyframes wiggle2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(12px) rotate(10deg);
  }
  70% {
    transform: translateY(-12px) rotate(-9deg) scale(1.07);
  }
}

/* ICONS LIST */
ul li img {
  vertical-align: middle;
  width: 28px;
  margin-right: 16px;
  transform: translateY(3px) scale(1.1);
}
ul li {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.09em;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233347;
}
ul li strong {
  color: #44BFA3;
}
ul li span, ul li em {
  background: #FDED65;
  color: #233347;
  border-radius: 10px;
  padding: 2px 7px;
  font-size: 0.95em;
  margin-left: 10px;
  font-weight: 700;
}

/* ADDRESS + FOOTER */
footer {
  padding: 36px 0 10px 0;
  background: #DCE2E7;
  margin-top: 60px;
  border-top: 4px solid #44BFA3;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #233347;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.2s;
}
footer nav a:hover {
  color: #44BFA3;
}
footer address {
  font-style: normal;
  font-size: 0.98em;
  line-height: 1.5;
  color: #233347;
  margin-top: 9px;
}
footer address a {
  color: #44BFA3;
  word-break: break-all;
}
/* Logo Fixes */
header img, footer img {
  height: 42px;
  min-width: 42px;
  width: auto;
}
footer img {
  margin-bottom: 12px;
}

/* BUTTONS & INTERACTIONS */
button, .cta-button {
  transition: box-shadow 0.18s, background 0.19s, color 0.15s, transform 0.15s;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* MICRO-INTERACTIONS */
.cta-button {
  box-shadow: 0 2px 18px 0 rgba(35,51,71,0.12);
  animation: bounceIn 1s .3s backwards;
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.6) translateY(40px); }
  60% { opacity: 1; transform: scale(1.08) translateY(-6px); }
  80% { transform: scale(0.97) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* PLAYFUL FONTS */
body {
  font-size: 1.05rem;
}
.text-section {
  font-size: 1.22rem;
  line-height: 1.48;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 2002;
  background: #44BFA3;
  color: #fffbea;
  font-size: 2.5em;
  padding: 12px 17px 11px 17px;
  border-radius: 50%;
  box-shadow: 0 3px 14px #44BFA344;
  border: none;
  transition: background 0.15s, color 0.17s, transform 0.1s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #233347;
  color: #FDED65;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 32px #23334716;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 35px 28px 0 28px;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1.08), box-shadow 0.18s;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
  box-shadow: 0 6px 48px #23334723;
}
.mobile-menu-close {
  border: none;
  background: #FDED65;
  color: #233347;
  font-size: 2em;
  border-radius: 50%;
  margin-bottom: 26px;
  margin-left: auto;
  box-shadow: 0 2px 8px #44BFA355;
  transition: background 0.18s, color 0.13s;
  padding: 10px 17px 5px 17px;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #44BFA3;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.38em;
  font-weight: 700;
  padding: 11px 0 7px 0;
  color: #233347;
  border-bottom: 2px solid transparent;
  border-radius: 10px;
  transition: background 0.15s, color 0.19s;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FDED65;
  color: #44BFA3;
}
/* Only show burger on mobiles */
@media (max-width: 999px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
  header nav,
  header .cta-button {
    display: none !important;
  }
}
@media (min-width:1000px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    padding: 0 5px;
    gap: 14px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .section {
    padding: 18px 8px;
    margin-bottom: 28px;
    border-radius: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    font-size: 1em;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .content-grid,
  .card-container {
    gap: 13px;
    flex-direction: column;
  }
}

/* CONSISTENT SPACING & WHITE SPACE */
.section, .card, .testimonial-card {
  margin-bottom: 20px;
}
.content-wrapper {
  gap: 22px;
}
.card-container, .content-grid, .text-image-section {
  gap: 20px;
}

/* COOKIE CONSENT BANNER/BUTTONS */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbea;
  padding: 18px 15px 18px 15px;
  border-top: 3px solid #44BFA3;
  box-shadow: 0 -2px 13px 0 #23334715;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 3000;
  animation: cookiebannerin 0.6s .1s cubic-bezier(.62,.15,.32,1.35) backwards;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
@keyframes cookiebannerin {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity:1; transform: translateY(0); }
}
.cookie-banner-message {
  font-size: 1.02em;
  color: #233347;
  margin-right: 8px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  border-radius: 26px;
  padding: 8px 17px;
  border: none;
  margin-left: 0;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s, transform 0.13s;
  min-width: 90px;
}
.cookie-banner .accept {
  background: #44BFA3;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #14a384;
  color: #fffbea;
}
.cookie-banner .reject {
  background: #fff;
  color: #233347;
  border: 2px solid #233347;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #DCE2E7;
}
.cookie-banner .settings {
  background: #fffbea;
  color: #44BFA3;
  border: 2px solid #44BFA3;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FDED65;
  color: #1A8D76;
}
@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 11px 6px 13px 6px;
  }
  .cookie-banner-message {
    margin-bottom: 7px;
    margin-right: 0;
    text-align: center;
    font-size: 0.95em;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
  }
  .cookie-banner button {
    min-width: 100px;
    width: 100%;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3001;
  background: rgba(35, 51, 71, 0.12);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.34s cubic-bezier(.8,0,.27,1.09) backwards;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-fadein {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 60px 0 #23334729;
  padding: 39px 30px;
  max-width: 380px;
  width: 92vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalin 0.3s .07s cubic-bezier(.73,0,.36,1.19) backwards;
}
@keyframes modalin {
  from {
    opacity: 0; transform: translateY(60px) scale(.92);
  } to {
    opacity: 1; transform: none;
  }
}
.cookie-modal-content h2 {
  font-size: 1.2em;
  margin-bottom: 4px;
  color: #44BFA3;
}
.cookie-modal-content ul {
  padding: 0;
}
.cookie-modal-list {
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
}
.cookie-category input[type=checkbox] {
  accent-color: #44BFA3;
  width: 21px; height: 21px;
}
.cookie-category label {
  font-size: 1.02em;
  color: #233347;
  font-weight: 600;
  font-family: 'Montserrat', Arial,sans-serif;
}
.cookie-category .essential {
  color: #233347;
  font-weight: 700;
  font-style: italic;
  background: #FDED65;
  padding: 2px 9px;
  border-radius: 8px;
  margin-left: 5px;
  font-size: 0.99em;
}
.cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 12px;
  background: #44BFA3;
  color: #fff;
  font-size: 1.6em;
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  line-height: 1;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #FDED65;
  color: #233347;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 9px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1em;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 17px;
  border: none;
  transition: background 0.18s, color 0.17s;
  background: #44BFA3;
  color: #fff;
  min-width: 75px;
}
.cookie-modal-actions .reject {
  background: #fff;
  color: #233347;
  border: 1.5px solid #233347;
}
.cookie-modal-actions .reject:hover, .cookie-modal-actions .reject:focus {
  background: #DCE2E7;
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .accept:focus {
  background: #14a384;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 12vw 2vw 7vw 2vw;
    max-width: 100vw;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.06rem; }
}

/* ENERGETIC EFFECTS */
.cta-button {
  animation: btnpulse 2.6s infinite cubic-bezier(.8,0,.18,1.1);
}
@keyframes btnpulse {
  0%, 100% { box-shadow: 0 4px 15px #44BFA379; }
  50% { box-shadow: 0 12px 38px #FDED6597; }
}
.card {
  animation: popin 0.8s cubic-bezier(.7,0,.34,1.2) backwards;
}
@keyframes popin {
  from { opacity:0; transform: scale(.85) translateY(18px); }
  to { opacity:1; transform: none; }
}

/* FORMS & CONTACT */
address {
  font-style: normal;
  color: #233347;
}

/* ACCESSIBILITY FOCUS */
:focus {
  outline: 2px solid #FDED65;
  outline-offset: 2px;
}

/* COLOR SCHEME (Playful Dynamic):
  - Main: #44BFA3 (accent), #FDED65 (playful yellow), #233347 (deep blue), #DCE2E7 (pale blue), #fffbea (light cream)
*/

/* Misc. helpers */
.text-image-section>img {
  border-radius: 17px;
  box-shadow: 0 2px 15px #44BFA325;
}
.card-container .card {
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 260px;
}
.card ul {
  margin-top: 10px;
}


/* Hide elements visually but keep for screen readers */
.sr-only {
  position:absolute !important;
  left:-9999px !important;
  height:1px; width:1px;
  overflow:hidden;
}
