/* ==== 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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAF4E8;
  color: #2B4A6F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ull, ol {
  list-style: none;
}
a {
  color: #2B4A6F;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #F6BF4F;
  text-decoration: underline;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(43,74,111,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #f0e8d7;
}
th {
  background: #F6BF4F;
  color: #2B4A6F;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 17px;
}
/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 900;
  color: #2B4A6F;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F6BF4F;
  text-shadow: 2px 2px 0 #2B4A6F, 0 1px 10px #FAF4E8;
  animation: playful-title-pop 0.7s cubic-bezier(.58,1.73,.86,1) 1;
}
@keyframes playful-title-pop {
  0% { transform: scale(0.9) rotate(-3deg); opacity: 0.7; }
  75% { transform: scale(1.05) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
h2 {
  font-size: 1.5rem;
  color: #2B4A6F;
}
h3 {
  font-size: 1.2rem;
  color: #E46380;
  margin-top: 20px;
}
.tagline {
  font-size: 1.17rem;
  color: #2B4A6F;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  margin-bottom: 22px;
  font-style: italic;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  color: #E46380;
  font-weight: 900;
  letter-spacing: 0.01em;
}
em, i {
  color: #F6BF4F;
}
blockquote {
  font-style: italic;
  font-size: 1.12rem;
  color: #2B4A6F;
  margin: 0 0 4px 0;
  border-left: 5px solid #F6BF4F;
  padding-left: 18px;
}
/* ==== BRAND COLOR PALETTE ==== */
:root {
  --vtk-primary: #2B4A6F;
  --vtk-secondary: #F6BF4F;
  --vtk-accent: #FAF4E8;
  --vtk-pink: #E46380;
  --vtk-sky: #49CFEA;
  --vtk-green: #B8DD7A;
  --vtk-white: #fff;
  --vtk-black: #222;
}
body {
  background: var(--vtk-accent);
  color: var(--vtk-primary);
}
/* ==== LAYOUT ==== */
.container {
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--vtk-white);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(246,191,79,0.08), 0 2px 4px 0 rgba(43,74,111,0.06);
  padding: 38px 28px;
  margin-bottom: 40px;
  transition: box-shadow 0.25s;
}
.content-wrapper:last-child {
  margin-bottom: 0;
}
main {
  min-height: 55vh;
  padding-bottom: 70px;
}
/* ==== HEADER ==== */
header {
  background: linear-gradient(90deg, #FAF4E8 50%, #F6BF4F 100%);
  box-shadow: 0 2px 12px 0 rgba(43,74,111,0.04);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  gap: 16px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 14px;
  transition: transform 0.3s;
}
header img:hover {
  transform: scale(1.08) rotate(-3deg);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  /* playful underline effect */
}
.main-nav a {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 1.10rem;
  padding: 4px 8px;
  border-radius: 9px;
  position: relative;
  z-index: 1;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vtk-secondary);
  color: #2B4A6F;
  outline: none;
}
.cta-btn {
  background: var(--vtk-pink);
  color: #fff;
  padding: 12px 26px;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 1.04rem;
  text-transform: uppercase;
  border-radius: 25px 16px 22px 18px;
  box-shadow: 0 2px 16px 0 rgba(228,99,128,0.11);
  margin-left: 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.22s, transform 0.14s;
  letter-spacing: 0.05em;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vtk-secondary);
  color: var(--vtk-primary);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 4px 18px 0 rgba(43,74,111,0.18);
  outline: none;
}
/* =========================================================================
   ==== PLAYFUL, DYNAMIC SECTIONS AND CARD STYLES  ====================
   ========================================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--vtk-white);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(43,74,111,0.085);
  position: relative;
  padding: 28px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(246,191,79,0.18);
  transform: scale(1.025) rotate(-2deg);
}
.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: #fffbe3;
  border-radius: 18px;
  box-shadow: 0 4px 17px 0 rgba(246,191,79,0.12);
  margin-bottom: 22px;
  position: relative;
  border-left: 6px solid #F6BF4F;
  transition: box-shadow 0.21s;
  color: #2B4A6F;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(228,99,128,0.13);
}
.testimonial-card footer {
  color: #E46380;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  margin-top: 6px;
  margin-left: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vtk-white);
  border-radius: 19px;
  box-shadow: 0 2px 15px 0 rgba(43,74,111,0.11);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  max-width: 370px;
}
.feature-item strong {
  color: var(--vtk-primary);
}
/* Utility: Spacing between content cards/sections */
.card-container > *, .content-grid > *, .testimonial-card, .feature-item {
  margin-bottom: 20px !important;
}
/* ==== BUTTONS AND MICROS ==== */
button, .cta-btn {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
}
button {
  background: var(--vtk-secondary);
  color: #2B4A6F;
  border: none;
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(246,191,79,0.12);
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 0.14s, color 0.14s, transform 0.11s;
}
button:hover, button:focus {
  background: var(--vtk-pink);
  color: #fff;
  transform: scale(1.08) rotate(-2deg);
  outline: none;
}
/* ==== TABLES ==== */
table {
  margin-top: 10px;
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  border-bottom: 1px solid #F6BF4F;
}
th:last-child, td:last-child {
  border-right: 0;
}
tbody tr:last-child td {
  border-bottom: 0;
}
/* ==== FORMS (if any added later) ==== */
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #F6BF4F;
  padding: 11px 15px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: #fffde9;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--vtk-pink);
  box-shadow: 0 0 0 2px rgba(246,191,79,0.31);
}
/* ==== FOOTER ==== */
footer {
  background: #2B4A6F;
  color: #fff;
  padding: 36px 0 24px 0;
  box-shadow: 0 -1px 10px 0 rgba(43,74,111,0.09);
 }
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer img {
  height: 38px;
  margin-bottom: 11px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #F6BF4F;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 0.98rem;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-shadow: 0 2px 7px #F6BF4F55;
}
.footer-contact {
  font-size: 0.96rem;
  color: #fff;
  margin-top: 8px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact img {
  height: 19px;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: -2px;
}
/* =========================================================================
   ==== MOBILE NAVIGATION BURGER MENU   =====================================
   ========================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 201;
  background: var(--vtk-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.1rem;
  box-shadow: 0 2px 13px 0 rgba(43,74,111,0.13);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vtk-secondary);
  color: #2B4A6F;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff6e6;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: transform 0.35s cubic-bezier(.77,.14,.47,.97), opacity 0.24s;
  box-shadow: 2px 0 32px 0 rgba(43,74,111,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 22px 34px 0;
  background: var(--vtk-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.1s;
  box-shadow: 0 2px 17px 0 rgba(43,74,111,0.09);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vtk-secondary);
  color: #2B4A6F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  padding: 0 36px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  color: #2B4A6F;
  background: transparent;
  padding: 13px 0;
  border: none;
  border-radius: 20px;
  text-align: left;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF4D1;
  color: var(--vtk-pink);
  outline: none;
}
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  .content-wrapper {
    padding: 38px 12px;
  }
}
@media (max-width: 850px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-nav {
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    padding: 24px 7px;
  }
  .testimonial-card, .feature-item {
    padding: 16px 10px;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
  .footer-contact {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .tagline {
    font-size: 1rem;
  }
  .section, .card-container, .feature-item, .testimonial-card {
    margin-bottom: 18px;
    padding: 16px 2px !important;
  }
  .footer-contact img {
    height: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 390px) {
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 9px 0;
  }
}
/* ==== ANIMATIONS ==== */
.cta-btn, button, .card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.19s, color 0.14s, transform 0.17s;
}
.card {
  animation: swingin 0.56s cubic-bezier(.6,2.1,.64,1.1) 1;
}
@keyframes swingin {
  0% { transform: scale(0.97) rotate(-5deg); }
  40% { transform: rotate(2deg) scale(1.08); }
  100% { transform: rotate(0) scale(1); }
}
.testimonial-card {
  animation: popin 0.55s cubic-bezier(.5,1.67,.7,1.17) 1;
}
@keyframes popin {
  0% { opacity: 0; transform: translateY(25px) scale(0.97); }
  80% { opacity: 1; transform: translateY(-4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.card:hover::after {
  content: "✨";
  position: absolute;
  top: 7px;
  right: 14px;
  animation: twinkle 0.8s infinite alternate;
  font-size: 1.4rem;
}
@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}
/* ==== RESPONSIVE SPACING PATTERNS (as required) ==== */
.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;
}
/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff9e3;
  color: #2B4A6F;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px 16px;
  z-index: 5000;
  box-shadow: 0 -2px 22px 0 rgba(246,191,79,0.18);
  border-top: 4px solid #F6BF4F;
  font-size: 1rem;
  animation: cookie-popin 0.6s cubic-bezier(.77,.36,.62,1.11) 1;
}
@keyframes cookie-popin {
  0% { transform: translateY(48px); opacity: 0; }
  80% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 110px;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 22px;
}
.cookie-banner .accept {
  background: var(--vtk-green);
  color: #2B4A6F;
}
.cookie-banner .reject {
  background: var(--vtk-pink);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--vtk-secondary);
  color: #2B4A6F;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: scale(1.07) rotate(-1.5deg);
}
/* Modal overlay for cookie settings */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 74, 111, 0.21);
  z-index: 5040;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffbe3;
  border-radius: 20px;
  box-shadow: 0 3px 32px 0 rgba(43,74,111,0.18);
  min-width: 320px;
  max-width: 95vw;
  padding: 36px 28px 30px 28px;
  position: relative;
  z-index: 5042;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-modal-pop 0.42s cubic-bezier(.49,1.39,.68,1.08) 1;
}
@keyframes cookie-modal-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #2B4A6F;
  margin-bottom: 10px;
  font-size: 1.24rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-weight: 700;
  color: #2B4A6F;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F6BF4F;
  width: 19px;
  height: 19px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #2B4A6F;
  color: #fff;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  font-size: 1.32rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(246,191,79,0.13);
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F6BF4F;
  color: #2B4A6F;
}
/* ==== PLAYFUL RESPONSIVE EFFECTS ==== */
h1, h2, .cta-btn, .card, .testimonial-card {
  animation-timing-function: cubic-bezier(.4,1.45,.36,1.1);
  will-change: transform, opacity;
}
.card::before {
  content: '';
  display: block;
  position: absolute;
  top: -38px;
  left: -26px;
  width: 70px;
  height: 70px;
  background: #F6BF4F;
  opacity: 0.12;
  border-radius: 55% 70% 40% 44%;
  z-index: 0;
  pointer-events: none;
}
.card::after {
  display: none;
}
.card:hover::after {
  display: block;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  color: #F6BF4F;
  margin-right: 10px;
  margin-top: -7px;
}
textarea {
  min-height: 80px;
}
/* Miscellaneous utility classes */
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.text-center {
  text-align: center;
}
.text-accent {
  color: #E46380 !important;
}
.bg-accent {
  background: #FAF4E8 !important;
}
.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 16px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-3 {
  margin-bottom: 16px;
}
.mr-2 {
  margin-right: 8px;
}
.mr-3 {
  margin-right: 16px;
}
.ml-2 {
  margin-left: 8px;
}
.ml-3 {
  margin-left: 16px;
}
/* ==== PRINT ==== */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container, .content-wrapper { box-shadow: none !important; background: #fff !important; }
}
/* ==== FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Raleway:wght@700;900&display=swap');
