/* CSS RESET & NORMALIZATION */
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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* Set base styles and HTML5 display roles */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F1FAEE;
  color: #1D3557;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  /* Touch optimization */
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Brand & Artistic fonts */
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary, nav, .accent {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Vibrant creative_artistic color palette */
:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #F1FAEE;
  --brand-yellow: #FFE66D;
  --brand-red: #EF476F;
  --brand-blue: #06D6A0;
  --brand-purple: #7C4DFF;
  --shadow: 0 2px 12px rgba(66,60,110,0.10), 0 2px 4px rgba(69,123,157,0.07);
  --shadow-strong: 0 4px 32px rgba(30,41,59,0.13);
}

/* BODY/TYPOGRAPHY scale */
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
  color: var(--secondary);
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}
h4, h5, h6 {
  font-weight: 600;
}
p, address, li, .price {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #263254;
}
a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: var(--brand-red);
}
strong, b {
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 32px 4px 34px 38px / 32px 40px 12px 38px;
  position: relative;
  z-index: 1;
}

/* Artistic vibrant section backgrounds (home, testimonials, offer blocks) */
.section:nth-child(odd) {
  background: #fffbed;
  box-shadow: var(--shadow);
}
.section:nth-child(even) {
  background: #F1FAEE;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* Header/Nav Bar */
header {
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 1002;
  position: relative;
  width: 100%;
}
nav {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  z-index: 1021;
}
nav img {
  height: 42px;
  margin-right: 16px;
}
nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
nav ul li {
  display: flex;
}
nav ul a {
  display: block;
  padding: 9px 2px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 8px;
  background: none;
  text-decoration: none;
  position: relative;
  transition: color .18s;
}
nav ul a:hover, nav ul a:focus {
  color: var(--brand-blue);
  background: #F1FAEE;
  outline: none;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 28px;
  background: var(--brand-yellow);
  color: var(--primary);
  font-size: 1.12rem;
  border: none;
  border-radius: 24px 4px 20px 20px;
  font-weight: 800;
  text-decoration: none;
  margin-left: 32px;
  box-shadow: 0 2px 24px 0 rgba(67,130,230,0.12);
  transition: background 0.22s, color 0.15s, transform 0.14s;
  cursor: pointer;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.04);
}
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 24px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 20px 8px 18px 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  margin-bottom: 0;
  box-shadow: 0 1px 8px 0 rgba(30,158,170,0.08);
  transition: background 0.19s, color 0.15s, transform 0.13s;
  cursor: pointer;
  position: relative;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-purple);
  color: #fffbed;
  transform: scale(1.04);
}

/* Hamburger/Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-yellow);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  position: absolute;
  right: 22px;
  top: 11px;
  z-index: 1051;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(80,80,110,0.13);
  transition: background .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-blue);
  color: #fff;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,254,245,0.98);
  z-index: 1200;
  flex-direction: column;
  transition: transform 0.33s cubic-bezier(.61,.18,.41,1.02), opacity 0.18s;
  overflow-y: auto;
  transform: translateX(0) !important;
  opacity: 1;
  animation: menuSlideIn 0.5s cubic-bezier(.52,1.22,.49,1.01);
}
@keyframes menuSlideIn {
  0% {transform: translateX(100vw); opacity: 0;}
  80% {opacity:1;}
  100% {transform: translateX(0); opacity: 1;}
}
.mobile-menu nav {
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav a {
  color: var(--secondary);
  background: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  padding: 18px 0px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  text-decoration: none;
  transition: background .16s, color .12s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  font-weight: 700;
  z-index: 1221;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(232,70,120,0.10);
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #FFE66D;
}

/* HIDE DESKTOP NAVIGATION ON MOBILE */
@media (max-width: 1024px) {
  nav ul, nav > a.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN LAYOUT SPACING */
main {
  width: 100%;
  padding: 0 0 80px 0;
}


.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; }

/* Service cards, event blocks, team bios, etc */
.service-list, .event-list, .team-list, .card-container, .past-webinar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .event, .team-bio, .webinar-info {
  background: #fff;
  border-radius: 24px 6px 18px 8px / 20px 24px 12px 28px;
  padding: 30px 22px 24px 22px;
  min-width: 256px;
  max-width: 320px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  border: 2px solid var(--accent);
  transition: border 0.21s, box-shadow 0.19s, transform .16s;
}
.service-card:hover, .event:hover, .webinar-info:hover {
  border: 2px solid var(--brand-red);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.03) rotate(-1.2deg);
}
.service-card h3 {
  color: var(--brand-blue);
}
.service-card .price {
  font-size: 1.05rem;
  color: var(--brand-red);
  font-weight: bold;
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 20px 12px 26px 8px;
  padding: 32px 24px 28px 24px;
  min-width: 250px;
  max-width: 350px;
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--accent);
  margin-bottom: 20px;
  color: #2C374B;
}
.testimonial-quote {
  font-style: italic;
  font-size: 1.08rem;
  position: relative;
  color: #2C374B;
}
.testimonial-card:before {
  content: '“';
  font-size: 3.2rem;
  color: var(--brand-yellow);
  opacity: .32;
  line-height: 1;
  position: absolute;
  left: 20px;
  top: 10px;
  pointer-events: none;
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat',sans-serif;
}
.testimonial-rating {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-family: monospace;
}

/* Comparison table (creative style) */
.comparison-table {
  margin-bottom: 22px;
  overflow-x: auto;
  width: 100%;
}
.comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 420px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 18px 8px 14px 18px / 10px 25px 10px 25px;
  box-shadow: 0 2px 10px 0 rgba(88,110,160,0.083);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 17px 16px;
  text-align: left;
  font-size: 1rem;
}
.comparison-table th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
.comparison-table tbody tr:nth-child(even) {
  background: #F1FAEE;
}
.comparison-table tbody tr:nth-child(odd) {
  background: #fffbed;
}
.filter-options {
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 10px 0 14px 0;
  color: var(--primary);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-options span {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 14px 6px;
  padding: 4px 16px;
  margin: 2px 4px;
  font-size: .97rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.1s;
}
.filter-options span:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.faq-item strong {
  color: var(--secondary);
  font-size: 1.07rem;
}
.faq-item p {
  color: #2C354B;
}

/* Alert */
.alert {
  background: var(--brand-yellow);
  color: var(--primary);
  padding: 14px 22px;
  border-radius: 14px 6px;
  font-weight: 700;
  margin: 20px 0 20px 0;
  box-shadow: 0 2px 8px 0 rgba(241,250,238,0.18);
}

/* Address */
address {
  font-style: normal;
  color: #324720;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Footer */
footer {
  background: #fffbed;
  border-top: 3px solid var(--brand-yellow);
  box-shadow: 0 -2px 12px 0 rgba(241,250,238,0.08);
  padding: 40px 0 0 0;
}
footer .container {
  padding-bottom: 26px;
}
footer .content-wrapper {
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
footer nav ul, footer nav {
  flex-direction: column;
  gap: 8px;
  font-size: .96rem;
  margin-bottom: 7px;
}
footer nav ul li {
  margin-bottom: 6px;
}
footer a {
  color: var(--primary);
  text-decoration: underline;
}
footer a:hover {
  color: var(--brand-red);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--brand-yellow) 65%, var(--brand-blue) 100%);
  color: var(--primary);
  box-shadow: 0 -4px 18px 0 rgba(29,53,87,0.08);
  padding: 24px 14px 18px 14px;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  transition: opacity 0.18s, max-height 0.32s cubic-bezier(.42,1.62,.4,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  max-height: 220px;
  transition: opacity 0.18s, max-height 0.32s cubic-bezier(.42,1.62,.4,1);
}
.cookie-banner p {
  font-size: 0.97rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 22px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color .11s;
}
.cookie-banner .accept {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus{
  background: var(--primary);
  color: var(--brand-yellow);
}
.cookie-banner .reject {
  background: var(--brand-red);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: var(--brand-yellow);
}
.cookie-banner .settings {
  background: var(--brand-yellow);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--brand-blue);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,30,55,0.32);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 24px 8px 18px 20px;
  max-width: 420px;
  width: 92vw;
  padding: 36px 24px 26px 24px;
  color: var(--primary);
  box-shadow: var(--shadow-strong);
  position: relative;
  animation: cookieModalIn 0.42s cubic-bezier(.61,.07,.73,1.16);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.88) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.46rem;
  margin-bottom: 18px;
  color: var(--brand-blue);
}
.cookie-modal ul {
  margin: 0 0 16px 18px;
  padding: 0;
}
.cookie-modal li {
  margin-bottom: 10px;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}
.cookie-modal .toggle {
  width: 42px;
  height: 24px;
  background: #F1FAEE;
  border-radius: 12px;
  position: relative;
  margin-left: 0;
  cursor: pointer;
}
.cookie-modal .toggle input[type='checkbox'] {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  left: 0; top: 0;
}
.cookie-modal .toggle-slider {
  width: 19px;
  height: 19px;
  background: var(--secondary);
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 2px;
  transition: left 0.17s, background 0.13s;
}
.cookie-modal .toggle input[type='checkbox']:checked ~ .toggle-slider {
  left: 21px;
  background: var(--brand-blue);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--brand-blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 21px;
  border: none;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color .12s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-modal .modal-close {
  position: absolute;
  right: 12px; top: 12px;
  background: var(--brand-red);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primary);
}

/* Responsive: MOBILE FIRST */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  nav {
    flex-direction: row;
    min-height: 62px;
    padding: 0 7px 0 7px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 4px;
    border-radius: 22px 3px 20px 18px / 18px 18px 12px 20px;
  }
  .service-list, .testimonial-list, .team-list, .event-list, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .service-card, .testimonial-card, .event, .webinar-info {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 24px 13px 22px 13px;
    border-radius: 14px 4px 10px 8px;
  }
  .testimonial-quote {
    font-size: 1.02rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .comparison-table table {
    font-size: 0.97rem;
  }
}

@media (max-width: 380px) {
  .cookie-banner {
    padding: 19px 2px 14px 2px;
  }
  .cookie-modal .modal-content {
    padding: 18px 3px 13px 3px;
  }
}

/* Micro-interactions: fade-in, subtle underline, button pulse */
.btn-primary, .btn-secondary {
  animation: fadeInBtn 0.88s cubic-bezier(.73,.04,.37,1.23) both;
}
@keyframes fadeInBtn {
  0% {opacity: 0; transform: translateY(30px) scale(0.92);}
  100% {opacity: 1; transform: none;}
}
.card, .service-card, .event, .testimonial-card {
  transition: box-shadow 0.23s, transform .13s;
}
.card:hover, .service-card:hover, .event:hover, .testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px) scale(1.01) rotate(1.1deg);
}

/* Visual Artistic Details/Accents */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: -20px;
  width: 62px;
  height: 62px;
  z-index: 0;
  background: var(--brand-yellow);
  opacity: .20;
  border-radius: 20% 65% 70% 30% / 30% 85% 30% 70%;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18px;
  right: -21px;
  width: 52px;
  height: 36px;
  background: var(--brand-blue);
  opacity: .16;
  border-radius: 30% 80% 40% 70% / 90% 60% 10% 80%;
  pointer-events: none;
  z-index: 0;
}

/* Artistic font for site tagline or highlighted elements */
.accent {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: var(--brand-red);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

/* Hide outline unless focused for accessibility */
:focus {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
:active {
  outline: none;
}

/* Disable grid, columns, etc. (guaranteed by not using them above) */

/* Utility classes */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-space-between { justify-content: space-between !important; }

/* Selection Highlight */
::selection {
  background: var(--brand-yellow);
  color: var(--primary);
}

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