/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F6EDE1;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1A3558;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #3772FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffbb00;
  outline: none;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* BRAND COLORS & CUSTOM PROPERTIES (with fallbacks) */
:root {
  --color-primary: #1A3558;
  --color-secondary: #74A488;
  --color-accent: #F6EDE1;
  --color-action: #FFBB00;
  --color-funpink: #F67C91;
  --color-light: #fff;
  --color-dark: #1A3558;
  --color-grey: #E6E6E6;
  --shadow-card: 0 4px 16px rgba(116, 164, 136, 0.08);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-accent);
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 rgba(246, 124, 145,0.05);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 8px;
  }
}

/* HEADINGS & TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}
p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

strong {
  font-weight: 700;
  color: var(--color-primary);
}

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

.text-section ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.text-section li {
  margin-bottom: 8px;
}

blockquote {
  font-family: var(--font-display);
  background: #fff9d6;
  color: #C64784;
  font-size: 1.1rem;
  border-left: 6px solid #F67C91;
  margin: 0 0 12px 0;
  padding: 18px 26px 18px 18px;
  border-radius: 16px 24px 20px 12px;
  box-shadow: 0 2px 16px 0 rgba(246, 124,145,0.08);
}

/* PLAYFUL & DYNAMIC EFFECTS */
@keyframes floaty {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  70%{ opacity: 1; transform: translateY(-8px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.content-wrapper > h1, .content-wrapper > h2 {
  animation: bounceIn 0.8s cubic-bezier(.7,-0.42,.3,1.3) 0s 1 both;
}

/* BUTTONS */
.cta-btn {
  font-family: var(--font-display);
  background: var(--color-funpink);
  color: var(--color-light);
  font-size: 1.11rem;
  border-radius: 30px;
  padding: 14px 38px;
  box-shadow: 0 8px 40px 0 rgba(246, 124, 145,0.16),0 1.5px 5px 0 rgba(58,46,79,0.02);
  font-weight: 700;
  transition: background 0.24s, transform 0.14s;
  letter-spacing: 0.02em;
  margin-top: 10px;
  display: inline-block;
  border: 2px solid var(--color-funpink);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.07) rotate(-2deg);
}

/* NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid var(--color-funpink);
  box-shadow: 0 4px 20px 0 rgba(29,57,108,0.09);
  z-index: 10;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  min-height: 72px;
  padding-top: 8px; padding-bottom: 8px;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  background: none;
  border-radius: 18px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-funpink);
  color: var(--color-light);
}
header a img {
  height: 44px;
  width: auto;
}

/* BURGER MENU (mobile) */
.mobile-menu-toggle {
  display: none;
  background: var(--color-funpink);
  border-radius: 50%;
  font-size: 2.1rem;
  color: var(--color-light);
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 30;
  margin-left: 8px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--color-action);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 32px 32px 24px;
  background: var(--color-light);
  box-shadow: -4px 0 48px 0 rgba(26,53,88,0.18);
  position: fixed;
  top: 0; right: 0; left: auto;
  width: 290px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  z-index: 1200;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-light);
  font-size: 2.25rem;
  border-radius: 50%;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  display: flex;
  position: absolute;
  top: 18px; right: 18px;
  transition: background 0.22s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-funpink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: var(--color-dark);
  padding: 11px 0;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}

@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    width: 96vw;
    padding-left: 11px;
    padding-right: 7px;
  }
  .mobile-menu-close {
    top: 8px; right: 6px;
  }
  .mobile-nav {
    margin-top: 19px;
    gap: 14px;
  }
}

/* MAIN CONTENT SECTIONS & FLEXBOX CARDS */
.service-cards,
.team-grid,
.blog-cards,
.card-container,
.route-filter,
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 10px 0;
  align-items: stretch;
}
.service-cards > div,
.team-grid > div,
.blog-cards > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 26px 20px 24px 20px;
  flex: 1 1 300px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.16s;
  animation: floaty 2.5s ease-in-out infinite;
}
.service-cards > div:hover,
.team-grid > div:hover,
.blog-cards > div:hover {
  transform: translateY(-7px) scale(1.03) rotate(-2deg);
  box-shadow: 0 16px 36px 0 rgba(116, 164, 136, 0.16);
}

.route-filter {
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.route-filter span { font-weight: 600; font-size: 1.02rem; color: var(--color-dark); }
.route-filter a { font-family: var(--font-display); color: var(--color-secondary); font-weight: 700; background: #f7c9de; border-radius: 13px; padding: 4px 11px; transition: background 0.18s; }
.route-filter a:hover, .route-filter a:focus { background: var(--color-funpink); color: #fff; }

.categories > h3 {
  margin-bottom: 3px;
  color: var(--color-funpink);
}

/* Blog categories links */
.blog-categories, .categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
}
.blog-categories a, .categories a {
  color: var(--color-funpink);
  border-radius: 12px;
  padding: 6px 12px;
  transition: background 0.2s, color 0.2s;
}
.blog-categories a:hover, .categories a:hover {
  background: var(--color-light);
  color: var(--color-action);
}

@media (max-width: 900px) {
  .service-cards, .team-grid, .blog-cards {
    flex-direction: column;
    gap: 20px;
  }
  .service-cards > div,
  .team-grid > div,
  .blog-cards > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .route-filter, .blog-categories, .categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* CARD and FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 17px;
  box-shadow: var(--shadow-card);
  padding: 23px 19px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 16px 40px 0 rgba(58, 46, 79, 0.07);
  transform: translateY(-1px) scale(1.019) rotate(-1deg);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffceb;
  border-radius: 20px 13px 27px 23px;
  box-shadow: 0 4px 32px 0 rgba(246, 124, 145, 0.09);
  margin-bottom: 20px;
  margin-top: 0;
  animation: floaty 3.4s ease-in-out infinite;
}
.testimonial-card blockquote {
  background: none;
  border-left-color: var(--color-funpink);
  color: #1A3558;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* FEATURES ITEMS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.feature-item img {
  margin-bottom: 10px;
}

/* LISTS WITH ICONS */
ul > li > img {
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-right: 13px;
  margin-bottom: -5px;
  animation: floaty 1.8s ease-in-out infinite;
}
ul {
  margin-top: 5px;
}
ul li {
  margin-bottom: 20px;
  padding-left: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.55;
}
ul li strong {
  font-size: 1.04rem;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 3px solid var(--color-funpink);
  margin-top: 60px;
  width: 100%;
  font-size: 0.99rem;
  color: var(--color-primary);
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-logo img {
  width: 48px;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
footer nav a {
  color: var(--color-funpink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  border-radius: 12px;
  padding: 3px 10px;
  transition: background 0.1s, color 0.1s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-funpink);
  color: var(--color-light);
}
.footer-contact p, .footer-contact a {
  color: var(--color-dark);
  font-size: 0.98rem;
}
.footer-contact a {
  text-decoration: underline dotted;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* FORM & FIELD STYLES (for potential forms) */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 17px;
  border-radius: 16px;
  border: 1.5px solid var(--color-secondary);
  outline: none;
  box-shadow: 0 1px 8px 0 rgba(116,164,136,0.07);
  margin-bottom: 20px;
  background: #fff;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-funpink);
}
label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffceb;
  color: var(--color-dark);
  box-shadow: 0 -2px 18px 0 rgba(246, 124, 145, 0.09);
  z-index: 2000;
  font-family: var(--font-body);
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: center;
  padding: 21px 28px;
  max-width: 650px;
  min-width: 230px;
  width: 98vw;
  margin: 0 auto 19px auto;
  border-radius: 18px 18px 26px 25px;
  opacity: 1;
  transition: opacity 0.27s, transform 0.27s;
  box-sizing: border-box;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 15px;
  padding: 8px 22px;
  font-weight: 700;
  background: var(--color-funpink);
  color: #fff;
  border: none;
  margin-left: 0;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--color-secondary);
  color: var(--color-light);
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: var(--color-funpink);
  color: var(--color-light);
}

/* COOKIE MODAL */
.cookie-modal-bg {
  position: fixed;
  z-index: 2050;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,53,88,0.29);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 32px 22px 20px 32px;
  max-width: 420px;
  width: 98vw;
  border-radius: 22px 22px 28px 18px;
  box-shadow: 0 15px 70px 0 rgba(246, 124, 145,0.21);
  z-index: 2100;
  animation: bounceIn 0.7s;
  position: relative;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-funpink);
}
.cookie-modal label {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-funpink);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-funpink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 32px; height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-secondary);
}
.cookie-modal .cookie-options {
  margin: 0 0 16px 0;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
  width: 100%;
  font-size: 1.04rem;
}
@media (max-width: 545px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 7px;
    margin-bottom: 13px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
  }
  .cookie-modal {
    padding: 19px 8px 18px 12px;
    max-width: 95vw;
  }
}

/* ANIMATED DECORATION ELEMENTS */
/* (Example for playful floating shapes - for additional elements if added in the future)
.decoration-bubble {
  position: absolute;
  width: 54px; height: 54px;
  background: var(--color-funpink);
  border-radius: 50%;
  opacity: 0.09;
  z-index: 0;
  animation: floaty 3.7s linear infinite;
}
*/

/* MISC: SPACING & FLEX UTILITIES */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-48 { margin-top: 48px !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ACCESSIBILITY (FOCUS STYLES) */
:focus-visible {
  outline: 3px solid var(--color-action);
}

/* VISUAL ENHANCEMENTS: SHADOWS, RADIUS, HIERARCHY */
.card, .service-cards > div, .team-grid > div, .testimonial-card {
  box-shadow: 0 8px 32px 0 rgba(116,164,136,0.11);
  border-radius: 22px;
}

@media (max-width: 400px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.1rem; }
  .cta-btn { font-size: 0.98rem; padding: 10px 15px; }
}

/* PRINT OPTIMIZATION */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-bg, .cta-btn { display: none !important; }
  header, footer { border: none; box-shadow: none; }
  .section, .card, .service-cards > div, .team-grid > div, .testimonial-card {
    box-shadow: none;
    background: #fff;
    color: #000;
    border-radius: 0;
  }
}

/* HERO SECTION EMPHASIS */
.section:first-of-type, main > section:first-of-type, .hero {
  background: linear-gradient(90deg, #F6EDE1 88%, #F67C91 100%);
  position: relative;
  box-shadow: 0 8px 60px 0 rgba(246, 124, 145, 0.10);
  z-index: 1;
}

/* PAGE TRANSITION (OPTIONAL – JS CAN ADD .fade-in) */
.fade-in {
  animation: bounceIn 0.7s;
}

/* REMOVE GRID OR COLUMNS COMPLETELY */
/* display: grid, grid-*, column-* are NOT used */
