/* 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,
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: 'Open Sans', Arial, sans-serif;
  color: #25423E;
  background: #FFFBE9;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #25423E;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover,
a:focus {
  color: #F5C045;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  color: #25423E;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subtitle {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #F5C045;
}
p {
  margin-bottom: 14px;
}
strong {
  color: #20423E;
  font-weight: bold;
}

/* Utility Containers & Layout */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(245,192,69,0.07), 0 1.5px 4px 0 rgba(46,67,62,0.07);
  transition: box-shadow 0.3s;
}
.section:hover {
  box-shadow: 0 8px 28px 0 rgba(245,192,69,0.13), 0 3px 12px 0 rgba(46,67,62,0.14);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFADE;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(37,66,62,0.07), 0 1px 3px 0 rgba(245,192,69,0.11);
  padding: 24px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 22px 0 rgba(245,192,69,0.25), 0 4px 8px 0 rgba(46,67,62,0.10);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-grid > *,
ul.feature-grid > li {
  background: #FFF4C7;
  border-radius: 18px;
  padding: 20px 24px 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(245,192,69,0.09);
  min-width: 200px;
  min-height: 60px;
  margin-bottom: 0 !important;
  position: relative;
  transition: box-shadow 0.2s, background 0.3s;
}
.feature-grid > *:hover {
  box-shadow: 0 6px 16px rgba(245,192,69,0.18);
  background: #F5C045;
  color: #25423E;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.text-section {
  margin: 18px 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFE593;
  color: #20312F;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(245,192,69,0.13), 0 1.5px 2.5px 0 rgba(46,67,62,0.12);
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(37,66,62,0.15), 0 4px 12px rgba(245,192,69,0.19);
  transform: scale(1.02) rotate(0.5deg);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  line-height: 1.55;
  color: #20312F;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #25423E;
  opacity: 0.9;
}

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

ul li,
ol li {
  margin-bottom: 12px;
  line-height: 1.55;
  position: relative;
}
ul li strong {
  color: #25423E;
}

/* Buttons & CTAs */
.cta-btn {
  background: #F5C045;
  color: #25423E;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border: none;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 28px;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(245,192,69,0.13);
  transition: background 0.2s, box-shadow 0.17s, color 0.2s, transform 0.16s;
  text-shadow: 0 1px 2px #ffffff70;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #25423E;
  color: #F5C045;
  box-shadow: 0 4px 14px 0 rgba(37,66,62,0.18);
  transform: scale(1.05) rotate(-1deg);
}

button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* Header & Navigation */
header {
  width: 100%;
  padding: 14px 0 10px 0;
  background: #25423E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 90;
  box-shadow: 0 4px 14px rgba(245,192,69,0.07);
}
header > a img {
  height: 52px;
  margin-left: 14px;
  filter: drop-shadow(0 1px 5px #f5c04570);
  background: #fffef7;
  padding: 4px 10px;
  border-radius: 15px;
  transition: box-shadow 0.23s;
}
header > a img:hover {
  box-shadow: 0 5px 20px #f5c04554;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 16px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 10px 18px;
  transition: background 0.17s, color 0.17s, transform 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5C045;
  color: #25423E;
  transform: scale(1.07) rotate(-2deg);
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  width: 46px;
  height: 46px;
  z-index: 1050;
  background: #F5C045;
  color: #25423E;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 2px 10px #25423e30;
  transition: background 0.18s, color 0.22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #25423E;
  color: #F5C045;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1300;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  max-width: 100vw;
  background: #25423E;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.68,-0.45,.27,1.45);
  box-shadow: -2px 0 20px #F5C04544;
  padding-top: 16px;
  padding-bottom: 40px;
  opacity: 0.999;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F5C045;
  color: #25423E;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.7rem;
  margin: 14px 10px 18px 0;
  box-shadow: 0 1px 7px #f5c04544;
  transition: background 0.19s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #25423E;
  color: #F5C045;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.23rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 14px 10px 14px 0;
  border-bottom: 2px solid #F5C04544;
  border-radius: 10px;
  width: 100%;
  transition: background 0.14s, color 0.15s, transform 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5C045;
  color: #25423E;
  transform: scale(1.05) rotate(-2deg);
}

/* Footer */
footer {
  background: #25423E;
  color: #fff;
  padding: 32px 14px 20px 14px;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 23px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 0.98rem;
  transition: background 0.19s, color 0.19s;
  background: transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F5C045;
  color: #25423E;
}
.footer-contact {
  font-size: 1rem;
  opacity: 0.89;
}
.footer-contact a {
  color: #F5C045;
  font-weight: 600;
  text-decoration: underline dotted;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #25423E;
  color: #fff;
  z-index: 3100;
  box-shadow: 0 -2px 18px #F5C04563;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 18px 20px 18px;
  align-items: center;
  font-size: 1.1rem;
  animation: slideup-banner 0.9s cubic-bezier(.68,-0.45,.27,1.45);
}
@keyframes slideup-banner {
  from { transform: translateY(120px); opacity: 0; }
  to {   transform:translateY(0); opacity: 1; }
}
.cookie-banner__text {
  text-align: center;
  margin-bottom: 7px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #F5C045;
  color: #25423E;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px #f5c04571;
  margin: 0 0 0 0;
  transition: background 0.18s, color 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #25423E;
  color: #F5C045;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 3400;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: rgba(37,66,62,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.4s cubic-bezier(.68,-0.45,.27,1.45);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__window {
  background: #fff;
  color: #25423E;
  border-radius: 24px;
  padding: 38px 27px;
  box-shadow: 0 6px 32px #F5C04532;
  max-width: 400px;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal .cookie-btn {
  margin-bottom: 0;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #F5C045;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal__close {
  background: #F5C045;
  color: #25423E;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #25423E;
  color: #F5C045;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 20px 0 16px 0;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  font-size: 1.03rem;
}
.cookie-modal__category-toggle {
  appearance: none;
  outline: none;
  width: 34px;
  height: 20px;
  background: #F5C045;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.15s;
}
.cookie-modal__category-toggle:checked {
  background: #25423E;
}
.cookie-modal__category-toggle::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.14s;
}
.cookie-modal__category-toggle:checked::before {
  left: 15px;
  background: #F5C045;
}
.cookie-modal__category--locked label {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal__category--locked .cookie-modal__category-toggle {
  background: #d1d5c7;
  cursor: not-allowed;
}

/* Fun Playful Animation for sections/cards */
@keyframes card-bounce {
  0%   { transform: scale(1) rotate(-2deg); }
  25%  { transform: scale(1.03) rotate(2deg); }
  50%  { transform: scale(0.98) rotate(-1deg); }
  75%  { transform: scale(1.04) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.card:hover {
  animation: card-bounce 0.7s;
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
  width: 10px;
  background: #fffbe9;
}
body::-webkit-scrollbar-thumb {
  background: #F5C045;
  border-radius: 10px;
}

/* Misc Classes */
.bg-accent {
  background: #F5C045 !important;
  color: #25423E !important;
}
 
/* Responsive Design */
@media (max-width: 1160px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 968px) {
  .feature-grid > *, ul.feature-grid > li {
    min-width: 160px;
    padding: 13px 14px 11px 13px;
    font-size: 1rem;
  }
  .main-nav {
    gap: 14px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 880px) {
  .main-nav a, .footer-nav a {
    font-size: 0.96rem;
    padding: 7px 10px;
  }
  .section, .card {
    padding: 18px 7px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 7px;
  }
  header > a img {
    height: 37px;
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 62px;
  }
  .section {
    padding: 20px 4px;
    margin-bottom: 36px;
    border-radius: 13px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.05rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container,
  .card-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    gap: 14px;
    padding: 17px 10px;
    border-radius: 10px;
  }
  .container {
    padding: 0 2px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  footer {
    padding: 17px 5px 14px 5px;
    font-size: 0.97rem;
  }
  .cookie-modal__window {
    max-width: 96vw;
    min-width: 0;
    padding: 22px 7px 19px 10px;
  }
  .cookie-banner {
    font-size: 1rem;
    padding: 18px 3px 11px 3px;
  }
}

/* Playful Dynamic Font Loading */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* Fun, playful font for headings; body remains professional and readable */

/* Extra: Simple Focus Styles for Accessibility */
:focus-visible {
  outline: 2.5px dashed #F5C045;
  outline-offset: 3px;
}

/* Decorative Touches - Fun Circles in BG for Playfulness */
body::before, body::after {
  content: '';
  display: block;
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  background: #F5C04544;
  pointer-events: none;
}
body::before {
  width: 220px;
  height: 220px;
  left: -80px;
  top: 160px;
  filter: blur(2px);
  opacity: 0.35;
}
body::after {
  width: 155px;
  height: 155px;
  right: -40px;
  bottom: 180px;
  background: #25423E17;
  filter: blur(2.5px);
  opacity: 0.20;
}

/* FUN ICON anim classes (for playful motion on highlights/icons) */
.feature-grid img {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 7px;
  filter: drop-shadow(0 0 2px #F5C04555);
  transition: transform 0.38s cubic-bezier(.4,2,.5,.67);
}
.feature-grid > *:hover img {
  transform: scale(1.25) rotate(-6deg);
  filter: drop-shadow(0 4px 10px #F5C045);
}

/* END CSS */
