/* --- 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, main, section, article, aside, figure, figcaption, footer, header, nav, menu {
  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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F9FA;
  color: #2A3D4E;
  font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: none;
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
  margin: 0;
  outline: none;
  background: none;
  border: none;
}

/* --- Brand Fonts --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #2A3D4E;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}

p, li, span, label, input, textarea, table, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  color: #2A3D4E;
}
strong {
  color: #0076C7;
  font-weight: 700;
}

/* --- Layout Containers (Flexbox Only!) --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(37,118,198,0.07);
}

/* --- Playful/Dynamic Style Palette Overrides --- */
:root {
  --brand-primary: #2A3D4E;
  --brand-secondary: #A6B5C2;
  --brand-accent: #FFE066;
  --brand-magenta: #EF476F;
  --brand-turquoise: #06D6A0;
  --brand-blue: #118AB2;
  --brand-bg: #F8F9FA;
  --brand-shadow: 0 6px 24px 0 rgba(44,157,222,0.12);
  --brand-white: #fff;
  --brand-grey: #F3F6FA;
  --brand-dark: #222B37;
}

body {
  background: var(--brand-bg);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

/* --- Header --- */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 3px 17px rgba(44,157,222,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 14px;
}
.logo img {
  height: 44px;
  transition: transform 0.25s cubic-bezier(.39,.58,.57,1.28);
}
.logo img:hover {
  transform: rotate(-7deg) scale(1.09);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
  padding: 8px 14px;
  border-radius: 9999px;
  transition: background 0.15s, color 0.15s, transform 0.17s;
  position: relative;
}
.main-nav a:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.cta-btn {
  background: var(--brand-magenta);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 10px 32px;
  border-radius: 9999px;
  box-shadow: 0 3px 17px rgba(239,71,111,0.14);
  transition: background 0.2s, transform 0.17s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
  border: none;
  display: inline-block;
  margin-left: 16px;
  letter-spacing: 0.02rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-turquoise);
  color: var(--brand-dark);
  box-shadow: 0 6px 32px rgba(6,214,160,0.12);
  transform: translateY(-3px) scale(1.06) rotate(-2deg);
}

/* --- Mobile Burger Menu & Overlay --- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-magenta);
  color: #fff;
  font-size: 2.3rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px rgba(239,71,111,0.12);
  cursor: pointer;
  z-index: 1050;
  transition: background 0.17s, transform 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.1) rotate(-7deg);
}

.mobile-menu {
  position: fixed;
  background: var(--brand-bg);
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.65,.04,.39,1.45);
  box-shadow: 0 9px 33px 4px rgba(44,157,222,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-magenta);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  margin: 18px 0 12px 18px;
  font-size: 2.2rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 32px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-dark);
  padding: 12px 18px;
  border-radius: 30px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--brand-blue);
  color: #fff;
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .cta-btn {
    display: inline-block !important;
  }
}

/* --- Section Spacing & Card Patterns --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 270px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 9px 37px 0 rgba(17,138,178,0.15);
  transform: translateY(-5px) scale(1.018) rotate(-1.5deg);
}
.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 Cards --- */
.testimonial-card {
  background: #fffbe6;
  border-radius: 22px 8px 22px 8px;
  box-shadow: 0 5px 22px 0 rgba(255,224,102,0.13);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  border-left: 8px solid var(--brand-magenta);
  transition: box-shadow 0.19s;
  max-width: 750px;
  font-size: 1.14rem;
  color: #2A3D4E;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(239,71,111,0.24);
  border-left-color: var(--brand-blue);
}
.testimonial-card strong {
  font-size: 1.056rem;
  color: var(--brand-dark);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #FFA600;
  margin-left: 12px;
}

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

/* --- Blog List --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  background: var(--brand-white);
  min-width: 240px;
  flex: 1 1 280px;
  border-radius: 20px;
  box-shadow: 0 3px 19px 0 rgba(37,61,78,0.14);
  padding: 25px 20px;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
}
.blog-list article::before {
  content: "💡";
  position: absolute;
  top: -16px;
  right: 18px;
  font-size: 1.8rem;
  opacity: .8;
  transition: transform .25s;
}
.blog-list article:hover::before {
  transform: rotate(8deg) scale(1.15);
}
.blog-list article:hover {
  box-shadow: 0 8px 34px 0 rgba(17,138,178,0.12);
  transform: translateY(-3px) scale(1.02) rotate(-2deg);
}
.blog-list h3 {
  color: var(--brand-magenta);
}
.blog-list span {
  font-size: .94rem;
  color: var(--brand-blue);
  background: #f0f6ff;
  border-radius: 9px;
  padding: 2px 12px;
  display: inline-block;
}

/* --- Table --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: var(--brand-grey);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 13px 0 rgba(44,157,222,0.045);
}
th, td {
  padding: 14px 10px;
  text-align: left;
  color: var(--brand-dark);
}
th {
  background: var(--brand-secondary);
  color: var(--brand-dark);
  font-weight: 700;
}
tr:not(:last-child) {
  border-bottom: 2px solid var(--brand-accent);
}

/* --- Footer --- */
footer {
  background: var(--brand-blue);
  color: #fff;
  width: 100%;
  padding: 32px 0 12px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--brand-turquoise);
  transition: background 0.14s, color 0.14s, transform 0.11s;
}
.footer-nav a:hover {
  background: var(--brand-magenta);
  color: #fffbe6;
  transform: scale(1.05) rotate(-3deg);
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff;
  opacity: .83;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}
.footer-copy {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 6px;
  color: #d1f8ef;
}

/* --- Lists and FAQ --- */
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 21px;
  line-height: 1.8;
}
ul li::before {
  content: '●';
  color: var(--brand-magenta);
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1.16em;
}
ol li::before {
  content: counters(li, '.') '.';
  color: var(--brand-blue);
  font-weight: 700;
  margin-right: 7px;
  position: absolute;
  left: 0;
}
ul.social-links {
  flex-direction: row;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}
ul.social-links li {
  background: var(--brand-magenta);
  color: #fff;
  border-radius: 33px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(239,71,111,0.08);
}
ul.social-links img {
  height: 19px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fffbe6;
  color: var(--brand-dark);
  padding: 26px 20px 22px 20px;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  box-shadow: 0 -4px 24px 0 rgba(255,224,102,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: fadeInBanner 0.62s cubic-bezier(.21,1.12,.79,.88);
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(25px); }
  100% {opacity: 1; transform: translateY(0);}
}
.cookie-banner p {
  font-size: 1.06rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  border-radius: 29px;
  padding: 8px 28px;
  font-weight: 700;
  margin: 0;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.15s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: var(--brand-turquoise);
  color: var(--brand-dark);
}
.cookie-banner .accept:hover {
  background: var(--brand-magenta);
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .reject {
  background: var(--brand-magenta);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .settings {
  background: var(--brand-blue);
  color: #fffbe6;
}
.cookie-banner .settings:hover {
  background: var(--brand-accent);
  color: var(--brand-dark);
  transform: rotate(-2deg) scale(1.06);
}

/* --- Cookie Consent Modal --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,61,78,0.13);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: all;
  transition: background 0.22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 48px rgba(44,61,78,0.23);
  padding: 32px 22px 22px 22px;
  min-width: 95vw;
  max-width: 400px;
  position: relative;
  animation: slideYup 0.35s cubic-bezier(.21,1.12,.79,.88);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
@keyframes slideYup {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--brand-magenta);
  font-size: 1.23rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  cursor: pointer;
  color: var(--brand-dark);
  margin-bottom: 7px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-turquoise);
  width: 18px; height: 18px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px;
  right: 17px;
  background: var(--brand-magenta);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 4060;
}
.cookie-modal .close-cookie-modal:hover {
  background: var(--brand-blue);
}

/* --- Responsive Layouts: mobile-first approach --- */
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 40px;
    gap: 18px;
  }
  .blog-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px;
  }
  .footer-nav {
    gap: 13px;
  }
  .footer-logo img {
    height: 35px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .cookie-modal {
    min-width: 97vw;
    padding: 22px 7px 13px 13px;
  }
}
@media (min-width: 769px) {
  .content-grid {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

/* --- Utilities and Animations --- */
.shadow-pop {
  box-shadow: 0 7px 36px 0 rgba(6,214,160,0.14) !important;
}
.rounded-lg {
  border-radius: 22px !important;
}
.hide-overflow {
  overflow: hidden !important;
}

/* --- Playful micro-interactions --- */
a, button, .cta-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.16s, transform 0.13s;
}
.card, .testimonial-card, .blog-list article {
  transition: box-shadow 0.17s, transform 0.13s;
}

/* --- Form - N/A, but style basic inline links --- */
.text-section a {
  color: var(--brand-magenta);
  font-weight: 700;
  transition: color .13s;
}
.text-section a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

/* --- Table Responsive --- */
@media (max-width: 670px) {
  table, thead, tbody, tr, td, th {
    display: block;
    width: 100%;
  }
  td, th {
    padding: 10px 8px;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 16px;
    background: var(--brand-grey);
    border-radius: 10px;
    box-shadow: 0 1px 7px 0 rgba(44,157,222,0.05);
  }
}

/* --- Miscellaneous & Accessibility --- */
::selection {
  background: var(--brand-magenta);
  color: #fff;
}

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

/* Ensure NO Grid Layouts anywhere! */
/* No display: grid or columns anywhere as required. */