/* === 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: #F3F6F9;
  color: #1B263B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #1046d6;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #ff8a00;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #e0eefc;
  font-weight: bold;
  font-size: 18px;
}
td {
  background: #fff;
  font-size: 16px;
}
tr:nth-child(even) td {
  background: #f3f6f9;
}

/* === BRAND COLORS & FONT FAMILIES (with fallbacks) === */
:root {
  --color-primary: #1B263B;
  --color-secondary: #415A77;
  --color-accent: #F3F6F9;
  --color-playful-pink: #FF4F91;
  --color-playful-yellow: #FFD600;
  --color-playful-blue: #37BFF7;
  --color-playful-orange: #FFB74D;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, Helvetica, sans-serif;
  --shadow-card: 0 6px 32px rgba(27,38,59,0.09);
  --shadow-hover: 0 8px 40px rgba(27,38,59,0.18);
  --radius-large: 24px;
  --radius-med: 16px;
  --radius-small: 8px;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) 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;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.012);
}

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

/* === TYPOGRAPHY: playful, dynamic hierarchy === */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.13;
  color: #FF4F91;
  letter-spacing: -.015em;
  margin-bottom: 8px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #1B263B;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #415A77;
  margin-bottom: 4px;
}
h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, td {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #26314A;
  font-weight: 400;
  letter-spacing: -.01em;
}
strong {
  color: #37BFF7;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}

/* playful dynamic extras */
h1, h2, h3 {
  text-shadow: 0 2px 0 #FFD60022;
}

/* === FUN FONTS AND EFFECTS === */
h1, h2, h3, .cta-primary, .cta-secondary {
  text-transform: none;
  font-family: 'Montserrat', var(--font-display);
}

/* === NAVIGATION STYLES === */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(51,64,93,0.13);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px 0 8px;
  min-height: 68px;
  position: relative;
}
nav > a img {
  height: 46px;
  min-width: 120px;
  margin-right: 12px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  background: none;
}
nav ul li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #1B263B;
  padding: 8px 12px;
  border-radius: var(--radius-small);
  transition: color 0.25s, background 0.2s;
  position: relative;
}
nav ul li a:hover, nav ul li a:focus {
  background: #FFD600;
  color: #FF4F91;
}
nav .cta-primary {
  margin-left: 18px;
}

/* === HERO SECTIONS === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,#37BFF7 0%,#FF4F91 100%);
  padding: 48px 0 38px;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: 0 8px 32px #FFD60011;
  overflow: hidden;
}
.hero .container {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 3px 12px #FF4F9166, 0 2px 0 #FFD60066;
}
.hero p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 12px;
}
.hero .cta-primary {
  margin-top: 12px;
}

/* === FEATURES STYLE === */
.features {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  position: relative;
}
.features h2 {
  color: #FF4F91;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  font-weight: 500;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  background: #F3F6F9;
  padding: 14px 18px;
  border-radius: var(--radius-med);
  box-shadow: 0 1px 8px #FFD60011;
}
.features li img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

/* === SERVICES GRID / OVERVIEW === */
.service-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 12px;
  justify-content: flex-start;
}
.service-grid > div, .service-list > div {
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 28px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.service-grid > div:hover, .service-list > div:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.025) rotate(-0.5deg);
}
.service-grid > div img, .service-list > div img {
  width: 48px;
  height: 48px;
  background: #FFD600;
  border-radius: 50%;
  padding: 7px;
  margin-bottom: 10px;
  transition: background 0.22s;
}
.service-grid > div:hover img, .service-list > div:hover img {
  background: #FF4F91;
}

/* === APPROACH / METHOD === */
.approach ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.approach ul li {
  background: #E1F5FE;
  padding: 12px 18px;
  border-radius: var(--radius-small);
  font-weight: 500;
}
.approach h3 {
  color: #FFB74D;
}

/* === FAQ & LEGAL SECTIONS === */
.faq {
  background: #fff;
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
}
.faq h2 {
  color: #FF4F91;
}
.faq-item {
  margin-bottom: 24px;
  padding: 18px 16px;
  background: #FDF6FC;
  border-radius: var(--radius-small);
  border-left: 5px solid #FFD600;
  transition: box-shadow 0.2s, background 0.2s;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: #37BFF7;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.faq-item:hover {
  background: #fffbe6;
  box-shadow: 0 2px 14px #FFD60033;
}

.legal {
  background: #f7fafe;
  border-radius: var(--radius-med);
  box-shadow: 0 2px 12px #37BFF711;
  padding: 40px 20px;
  margin: 32px 0 38px 0;
}
.legal h1, .legal h2 {
  color: #FF4F91;
}
.legal ul, .legal ol {
  margin-bottom: 20px;
}

/* === CTA BUTTONS (PRIMARY & SECONDARY) === */
.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-med);
  box-shadow: 0 4px 16px #FF4F9133;
  padding: 16px 36px;
  margin-right: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.25s, color 0.15s;
  min-width: 180px;
  text-align: center;
  outline: none;
}
.cta-primary {
  background: #FF4F91;
  color: #fff;
  letter-spacing: .02em;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFD600;
  color: #1B263B;
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: 0 6px 24px #FFD60044;
}
.cta-secondary {
  background: #FFD600;
  color: #1B263B;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #FF4F91;
  color: #fff;
  transform: scale(1.055) rotate(1deg);
  box-shadow: 0 6px 24px #FF4F9144;
}

/* === SECTIONS (default, about, cta, etc.) === */
.about {
  background: #F9F8FC;
  border-radius: var(--radius-med);
  box-shadow: 0 2px 12px #37BFF711;
}
.cta {
  background: linear-gradient(90deg, #FFB74D 0 30%, #37BFF7 180%);
  border-radius: var(--radius-large);
  box-shadow: 0 4px 32px #FFD60019;
  color: #fff;
}
.cta h2 {
  color: #fff;
}
.cta a {
  font-weight: 700;
  margin-top: 12px;
}
.confirmation {
  background: #fff;
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  padding: 44px 24px;
  margin: 32px 0 38px 0;
}
.confirmation h1 {
  color: #FF4F91;
}

/* === FOOTER === */
footer {
  background: #1B263B;
  color: #fff;
  padding: 36px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFD600;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FF4F91;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
}
.footer-info img {
  width: 18px;
  height: 18px;
  vertical-align: baseline;
  margin-right: 4px;
}
.footer-copy {
  color: #fff;
  font-size: .97rem;
  opacity: 0.75;
  margin-top: 8px;
}

/* === TESTIMONIALS & REVIEWS - playful dynamic style === */
.testimonials {
  background: #FDF6FC;
  border-radius: var(--radius-med);
  box-shadow: 0 2px 10px #FF4F9111;
}
.testimonials h2 {
  color: #37BFF7;
}
.testimonials strong {
  color: #FF4F91;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: #1B263B;
  font-style: italic;
}
.testimonial-card div {
  font-family: var(--font-body);
  font-size: .98rem;
  color: #415A77;
  margin-top: 5px;
  font-style: normal;
}

/* === FORMATTED TABLES === */
table {
  border-radius: var(--radius-med);
  box-shadow: var(--shadow-card);
  background: #fff;
  overflow: hidden;
}
th, td {
  border-bottom: 1px solid #E4E6EF;
}
tr:last-child td {
  border-bottom: none;
}

/* === RESPONSIVE FLEXBOX LAYOUTS === */
@media (max-width: 1170px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 740px;
  }
  .service-grid > div, .service-list > div {
    flex: 1 1 200px;
    min-width: 176px;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 30px 0 18px;
    border-radius: 0 0 var(--radius-med) var(--radius-med);
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonials, .features, .about, .faq, .legal, .cta, .confirmation {
    padding: 14px 7px;
    border-radius: var(--radius-small);
    margin-bottom: 25px;
  }
  .service-grid, .service-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-grid > div, .service-list > div {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  header, nav {
    padding: 0 8px;
  }
}

/* === FLEX-ONLY LAYOUT CLARIFICATION === */
/* No grid, columns, or absolute for cards, as per brief. Only decorative elements may be absolute. */

/* === MOBILE BURGER NAV === */
.mobile-menu-toggle {
  display: none;
  background: #FF4F91;
  color: #fff;
  border: none;
  padding: 11px 16px;
  font-size: 1.8rem;
  border-radius: var(--radius-large);
  cursor: pointer;
  transition: background 0.18s, transform 0.21s;
  position: relative;
  z-index: 1200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD600;
  color: #1B263B;
  transform: scale(1.07) rotate(-3deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  background: #fff;
  box-shadow: -1px 0 30px #37BFF799;
  z-index: 2010;
  padding: 32px 18px 24px 18px;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FF4F91;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.13s, transform 0.13s;
}
.mobile-menu-close:hover {
  color: #FFD600;
  transform: scale(1.18) rotate(9deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: #1B263B;
  background: #F3F6F9;
  padding: 12px 16px;
  border-radius: var(--radius-med);
  margin-bottom: 4px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FFD600;
  color: #FF4F91;
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 20px;
  }
}

/* === COOKIE CONSENT BANNER AND MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg,#FFD600 0,#FF4F91 100%);
  color: #1B263B;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 20px 30px;
  box-shadow: 0 -4px 20px #1B263B08;
  z-index: 2500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.26s, transform 0.38s, visibility 0.35s;
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-display);
  padding: 9px 20px;
  border-radius: var(--radius-med);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
  margin-left: 4px;
  margin-right: 4px;
}
.cookie-banner .accept {
  background: #37BFF7;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #FF4F91;
  color: #fff;
}
.cookie-banner .reject {
  background: #FFD600;
  color: #1B263B;
}
.cookie-banner .reject:hover {
  background: #FF4F91;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #37BFF7;
  border: 2px solid #37BFF7;
}
.cookie-banner .settings:hover {
  background: #FFD600;
  color: #1B263B;
  border-color: #FFD600;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: #1B263B99;
  z-index: 2700;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open + .cookie-modal-backdrop,
.cookie-modal-backdrop.show {
  display: block;
  opacity: 1;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1.03);
  outline: none;
  background: #fff;
  color: #1B263B;
  border-radius: var(--radius-med);
  box-shadow: 0 6px 34px #1B263B30;
  z-index: 2800;
  width: 95vw;
  max-width: 390px;
  padding: 32px 26px 22px 26px;
  transition: opacity 0.21s, transform 0.28s;
  opacity: 0;
  visibility: hidden;
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,-50%) scale(1.00);
}
.cookie-modal h3 {
  color: #FF4F91;
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  gap: 14px;
}
.cookie-modal label input[type="checkbox"] {
  transform: scale(1.33);
}
.cookie-modal .category-desc {
  font-size: .93rem;
  margin-bottom: 8px;
  color: #415A77;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal .save {
  background: #37BFF7;
  color: #fff;
}
.cookie-modal .save:hover {
  background: #FFD600;
  color: #1B263B;
}
.cookie-modal .cancel {
  background: #fff;
  color: #37BFF7;
  border: 2px solid #37BFF7;
}
.cookie-modal .cancel:hover {
  background: #FFD600;
  color: #1B263B;
  border-color: #FFD600;
}

/* === PLAYFUL MICRO-INTERACTIONS & DECORATIVE ELEMENTS === */
.cta-primary, .cta-secondary, .mobile-menu-toggle, .cookie-banner button, .mobile-menu-close {
  transition: background 0.22s, color 0.19s, box-shadow 0.2s, transform 0.18s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98) rotate(-1.4deg);
}
footer .footer-info span img {
  filter: drop-shadow(0 1px 1px #FFD60055) drop-shadow(0 1px 4px #FF4F9111);
}
@media (max-width: 480px) {
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.12rem;}
  .cta-primary, .cta-secondary {
    min-width: 90px;
    font-size: .93rem;
    padding: 12px 8px;
  }
  .cookie-banner { font-size: .94rem; padding: 13px 3px; }
}

/* === MISCELLANEOUS === */
::-webkit-input-placeholder { color: #415A77aa; font-style: italic; }
::-moz-placeholder { color: #415A77aa; font-style: italic; }
:-ms-input-placeholder { color: #415A77aa; font-style: italic; }
::placeholder { color: #415A77aa; font-style: italic; }

/* === UTILITIES === */
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* END OF STYLES */
