/* CSS RESET & BASE STYLES */
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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1F4F9;
  color: #223047;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #BF6F27;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A65918;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0 20px 0;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  font-size: 16px;
}
th {
  background: #293745;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
td {
  background: #fff;
  color: #223047;
}
tr:nth-child(even) td {
  background: #F9E7D9;
}

/* BRAND FONTS: playful dynamic pairing */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Fredoka:wght@500;700&family=Open+Sans:wght@400;600;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Montserrat', Arial, sans-serif;
  color: #293745;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; font-weight: 900; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 12px; font-weight: 700; }
h3 { font-size: 1.35rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; font-weight: 700; }

p, li, td, th, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #223047;
}
strong {
  color: #A65918;
  font-weight: 700;
}
em {
  color: #BF6F27;
  font-style: italic;
}

body {
  font-size: 16px;
  background: #F1F4F9;
}

/* CONTAINERS & LAYOUTS (FLEX ONLY!) */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(41, 55, 69, 0.10);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container, .card-grid, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff5e6;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(191,111,39,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 24px 20px 24px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px #B9E4FE33;
  transform: translateY(-2px) scale(1.025);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(41, 55, 69, 0.08);
  min-width: 240px;
  max-width: 350px;
  border-left: 8px solid #BF6F27;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #293745;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #A65918;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HEADER & NAVIGATION */
header {
  background: #293745;
  padding: 0 0 5px 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 20px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin: 0 16px;
}
.main-nav a {
  color: #F1F4F9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #BF6F27;
  color: #fff;
}
.cta-btn {
  background: #BF6F27;
  color: #fff;
  font-family: 'Montserrat', 'Fredoka', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 16px;
  padding: 14px 22px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 #FFA72633;
  transition: background 0.16s, transform 0.12s, box-shadow 0.14s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A65918;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 24px #A6591833;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: #FFF1E6;
  color: #BF6F27;
  font-size: 2.4rem;
  border: none;
  border-radius: 10px;
  padding: 4px 14px 2px 14px;
  cursor: pointer;
  margin-left: 20px;
  display: none;
  transition: background 0.11s, color 0.12s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #BF6F27;
  color: #fff;
  box-shadow: 0 2px 12px #BF6F2780;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #293745;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.56,.08,0,1), opacity 0.25s;
  opacity: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.25rem;
  padding: 24px 20px 8px 20px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFA726;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
  padding: 12px 36px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 0;
  letter-spacing: 0.03em;
  border-radius: 10px;
  width: 100%;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #BF6F27;
  color: #fff;
}

/* MAIN HERO & SECTIONS */
.hero-section {
  background: linear-gradient(135deg, #FFF5E6 60%, #B9E4FE 100%);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  padding: 48px 0 40px 0;
  position: relative;
  min-height: 340px;
  margin-bottom: 48px;
  box-shadow: 0 12px 44px #B9E4FE22;
  display: flex;
  align-items: center;
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  font-size: 2.7rem;
  font-family: 'Fredoka', 'Montserrat', Arial, sans-serif;
  color: #293745;
  margin-bottom: 10px;
  text-shadow: 0 0px 0 #fff, 0 2px 10px #FFA72622;
}
.hero-section p {
  font-size: 1.3rem;
  color: #223047;
  margin-bottom: 22px;
}
.hero-section .cta-btn {
  font-size: 1.2rem;
  padding: 18px 32px 16px 32px;
  border-radius: 24px;
  box-shadow: 0 6px 24px #BF6F2726;
}

/* FINAL CTA section styles */
.section .cta-btn, .content-wrapper .cta-btn {
  margin-top: 12px;
  font-size: 1.12rem;
}

/* SPECIAL FLEX SPACING & REQUIREMENTS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* TEAM & TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
/* Animate testimonial cards in on scroll (fun!) */
.testimonial-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  animation: cardFadeIn 0.8s cubic-bezier(.19,.95,.43,1.01) both;
  animation-delay: 0.2s;
}
.testimonials-grid .testimonial-card:nth-child(2) {
  animation-delay: 0.4s;
}
.testimonials-grid .testimonial-card:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* PRICING TABLE */
table {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 20px 0 #29374516;
}
th, td {
  border-bottom: 1px solid #F1F4F9;
}
th:last-child, td:last-child {
  text-align: right;
}
tr:last-child td {
  border-bottom: none;
}

/* ORDERED/LIST ICONS FUN-STYLE */
ul li::marker, ol li::marker {
  color: #BF6F27;
  font-size: 1.1em;
}
ol li img {
  height: 1.5em; margin-right: 8px; vertical-align: middle;
}
ol li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  margin-bottom: 12px;
  gap: 10px;
}
ul li {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background: #293745;
  color: #fff;
  padding: 34px 0 18px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -5px 30px #B9E4FE22;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #BF6F27;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  height: 1.3em;
  width: 1.3em;
  margin-right: 6px;
  vertical-align: middle;
}

/* RESPONSIVE DESIGN – FLEXBOX ONLY! */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 5px;
    border-radius: 16px;
  }
  header .container {
    flex-direction: row;
    padding: 10px 8px;
    gap: 0px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonials-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
  }
  .footer-logo img {
    margin-bottom: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
  }
  .hero-section {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 25px 0 18px 0;
    min-height: unset;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.08rem; }
  .hero-section h1 { font-size: 1.45rem; }
  .container { padding: 0 3vw; }
}

/* FUN PLAYFUL EFFECTS & MICRO-ANIMATIONS */
.cta-btn {
  animation: funPulse 2.8s cubic-bezier(.71,-0.07,.27,1.16) infinite alternate;
}
@keyframes funPulse {
  0% { box-shadow: 0 3px 15px #FFA72640; }
  90% { box-shadow: 0 6px 25px #A6591826; }
  100% { box-shadow: 0 9px 32px #FFA72640; }
}
.cta-btn:hover {
  animation-play-state: paused;
}

/* Playful accent dot for headings */
h2::after {
  content: '•';
  color: #BF6F27;
  margin-left: 8px;
  font-size: 1.4em;
  vertical-align: middle;
  animation: dotBounce 1s cubic-bezier(.53,1.6,.73,1.01) infinite alternate;
}
@keyframes dotBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  z-index: 500;
  background: #fff5e6;
  color: #293745;
  box-shadow: 0 -2px 24px #BF6F2724;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 16px 22px 24px;
  font-size: 1.06rem;
  transition: transform 0.3s cubic-bezier(.56,.08,0,1), opacity 0.2s;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  flex-direction: row;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #BF6F27;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 20px 9px 20px;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.12s, transform 0.12s;
}
.cookie-btn:hover,
.cookie-btn:focus,
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #A65918;
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.rejected {
  background: #B9C2D6;
  color: #293745;
}
.cookie-btn.rejected:hover,
.cookie-btn.rejected:focus {
  background: #A6B1C7;
  color: #293745;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 600;
  background: rgba(41,55,69,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px #29374544;
  padding: 36px 30px 28px 30px;
  max-width: 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: slideUp 0.6s cubic-bezier(.77,-0.03,.43,1.04) both;
}
@keyframes slideUp {
  from { transform: translateY(80px) scale(.92); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}
.cookie-switch {
  appearance: none;
  width: 46px;
  height: 24px;
  border-radius: 24px;
  background: #B9C2D6;
  position: relative;
  outline: none;
  transition: background 0.12s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #BF6F27;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.14s, background 0.14s;
  box-shadow: 0 2px 8px #29374522;
}
.cookie-switch:checked:before {
  left: 24px;
}
.cookie-modal .cta-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px 0;
}
.cookie-modal .close-btn {
  position: absolute; right: 22px; top: 22px;
  background: transparent;
  border: none;
  color: #BF6F27;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #A65918;
}

/* Hide modal/overlay by default */
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
}

@media (max-width: 570px) {
  .cookie-banner { flex-direction: column; gap: 10px; font-size: 0.98rem; }
  .cookie-modal { min-width: 90vw; padding: 16px 5vw 18px 5vw; }
}

/* Focus Styles (Accessibility) */
a:focus, .cta-btn:focus, button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px dashed #BF6F27;
  outline-offset: 2px;
}

/* Miscellaneous playful touches */
.hero-section::before {
  content: '';
  position: absolute;
  top: -30px; right: -55px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #F9E7D9;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
  animation: blobHero 6s infinite alternate;
}
@keyframes blobHero {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.13) translateY(12px); }
}

.card::after {
  content: '';
  position: absolute;
  right: 20px; bottom: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #B9E4FE;
  opacity: .25;
  pointer-events: none;
  z-index: 0;
  animation: cardDot 3s infinite alternate;
}
@keyframes cardDot {
  0% { transform: translateY(0); }
  60% { transform: translateY(-4px) scale(1.13); }
  100% { transform: translateY(10px) scale(.97); }
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px,1px,1px,1px) !important;
  border: 0 !important;
}

/* End of Style File */
