/* RESET & BASE STYLES */
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, main, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F9FAFC;
  color: #222a35;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
}
img {
  max-width:100%;
  display:block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.25em;
}
a {
  color: #2d365d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B2233;
  text-decoration: underline;
}
::selection {
  background: #FAE3FB;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #1B2233;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 14px;
}
@media (min-width: 600px){
  h1 {font-size: 2.9rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.35rem;}
}
p, .subheadline {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2d365d;
  margin-bottom: 18px;
  font-weight: 400;
}
strong { font-weight:600; }

/* CONTAINER AND GENERAL LAYOUT */
.container {
  max-width: 1160px;
  margin: 10px auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (min-width: 900px) {
  .section {
    padding: 50px 0;
    margin-bottom: 70px;
  }
}
.text-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(180,190,208,0.10);
  padding: 30px 22px;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(160,180,205,0.11);
  padding: 24px 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(180,190,208,0.18);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f6ff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(120,130,160,0.09);
  margin-bottom: 20px;
  color: #232a36;
  position: relative;
}
.testimonial-card strong {
  color: #1B2233;
  font-size: 1rem;
  margin-top: 8px;
}
.testimonial-card.testimonial-highlight {
  background: #f7ede6;
  border: 1.5px solid #f5c7ad;
  box-shadow: 0 5px 22px 0 rgba(230,180,140,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature {
  background: #F4F4FF;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(200,195,255,0.08);
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.15s;
}
.feature:hover {
  box-shadow: 0 6px 28px 0 rgba(160,170,205,0.14);
  transform: translateY(-3px) scale(1.015);
}
@media (max-width: 900px){
  .content-grid, .card-container, .feature-grid, .testimonial-list, .team-member-cards {
    flex-direction: column !important;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* BUTTONS & CTA */
.cta-button {
  display: inline-block;
  padding: 0.92em 2em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  border-radius: 36px;
  background: #FDC300;
  color: #1B2233;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.2s, box-shadow 0.18s, color 0.2s, transform 0.15s;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(253,195,0, 0.16);
  margin-top: 20px;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #dba00c;
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px 0 rgba(253,195,0, 0.18);
}
.cta-button.secondary {
  background: #EADFFF;
  color: #1B2233;
  box-shadow: 0 2px 8px 0 rgba(200,180,255,0.08);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #d4e7e7;
  color: #1B2233;
}

/* HEADER & NAVIGATION */
header {
  background: #ffffff;
  border-bottom: 1px solid #ECECF7;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01em;
  padding: 8px 0;
  color: #2d365d;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.27s;
}
.main-nav a:hover, .main-nav a.active {
  color: #f3ba13;
  border-bottom: 2.5px solid #FDC300;
  background: none;
}
header .cta-button {
  margin-left: 28px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #6A77B6;
  display: none;
  margin-left: 16px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 21;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FDC300;
}
@media (max-width: 900px){
  .main-nav {display: none;}
  .cta-button {margin-left: 0;}
  .mobile-menu-toggle {display: block;}
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0; left:0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(241,241,255,0.98);
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 0 0 100px rgba(120,120,200,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #1B2233;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 7;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FDC300;
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: #2c3660;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #0097ca;
  border-bottom: 2px solid #7ddbee;
}
@media (max-width: 900px){
  .main-nav,.main-nav * {display: none !important;}
}

/* HERO & SPECIAL SECTIONS */
.subheadline {
  font-size: 1.22rem;
  color: #6c6b8b;
  font-weight: 500;
  margin-bottom: 30px;
}
.service-highlight {
  background: #e6fdfb;
  color: #2a333a;
  padding: 14px 18px;
  border-radius: 13px;
  font-size: 1.03rem;
  margin-bottom: 1.2em;
  box-shadow: 0 1px 4px 0 rgba(70,205,200,0.10);
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 20px 0;
}
.milestone {
  padding: 10px 18px;
  background: #f6f3ff;
  border-left: 5px solid #D9E7F1;
  border-radius: 9px;
  font-size: 1.01em;
}
@media (min-width:800px){
  .timeline {
    padding-left: 16px;
  }
}

/**** TEAM CARDS ****/
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 38px;
  justify-content: flex-start;
}
.team-member-card {
  background: #F5F7FF;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(180,180,210,0.11);
  padding: 24px 18px 20px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  text-align: left;
  transition: box-shadow 0.17s, transform 0.09s;
}
.team-member-card:hover {
  box-shadow: 0 8px 28px 0 rgba(180,210,230,0.13);
  transform: translateY(-3px) scale(1.015);
}

/**** TESTIMONIALS ****/
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

/**** BLOG ****/
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.featured-post {
  background: #FFFAF0;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(230,200,140,0.07);
  padding: 26px 22px 22px 22px;
  margin-bottom: 18px;
}
.featured-post h2 {color: #dba00c;}
.blog-categories {
  margin-top: 14px;
  padding: 20px 0 0 0;
}
.blog-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-categories li {
  background: #F4F4FF;
  color: #695fa3;
  border-radius: 12px;
  padding: 7px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/**** INDIVIDUAL SERVICE BLOCK ****/
.individual-service-block {
  background: #F3FFFD;
  padding: 22px 18px 18px 18px;
  border-radius: 13px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(150,230,240,0.09);
}

/**** CERTIFICATIONS ****/
.certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 18px 0;
}
.certifications img {
  width: 34px; height: 34px;
}
.certifications span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #6A77B6;
}

/**** CONTACT CARDS ****/
.contact-info {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.contact-info img {
  width: 20px; height:20px;
}

.map-placeholder {
  background: #f0f3fa;
  border-radius: 13px;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/**** NEXT STEPS THANK YOU ****/
.next-steps {
  background: #e8f0f7;
  border-radius: 10px;
  padding: 18px 15px;
  margin-bottom: 22px;
  box-shadow: 0 1px 4px 0 rgba(64,174,255,0.07);
  color: #212941;
  font-size: 1.05rem;
}
.next-steps a { color: #199ad9; }

/**** FOOTER ****/
footer {
  background: #f8faff;
  color: #232a36;
  border-top: 1px solid #e9e9f7;
  padding: 34px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6a77b6;
  font-size: 1.01rem;
  padding: 6px 0;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #FDC300;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #505f7c;
}
.footer-contact img {
  width: 18px; height: 18px;
}
@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
  }
  .footer-contact {
    align-items: flex-end;
    text-align: right;
  }
}

/****** COOKIE CONSENT BANNER ******/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff7e5 0%, #f5eaff 100%);
  box-shadow: 0 -2px 18px rgba(192,168,255,0.13);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  gap: 30px;
  transition: transform 0.4s cubic-bezier(0.68,0.2,0.28,1.03), opacity 0.27s;
  opacity: 1;
  transform: translateY(0%);
}
#cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
#cookie-banner p {
  color: #2D365D;
  font-size: 0.98rem;
  max-width: 410px;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 14px;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  transition: background 0.16s, color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 5px 0 rgba(210,180,255,0.07);
}
#cookie-accept {
  background: #FDC300;
  color: #1B2233;
}
#cookie-accept:hover { background: #dba00c; color: #fff; }
#cookie-reject {
  background: #ececf7;
  color: #6a77b6;
}
#cookie-reject:hover {background: #e1e1f1; color: #363679;}
#cookie-settings {
  background: #d9e7f1;
  color: #045366;
}
#cookie-settings:hover {background: #a5c3e5; color: #173368;}

/**** COOKIE MODAL ******/
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 310px;
  max-width: 96vw;
  width: 410px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 64px rgba(120,120,160,0.13);
  padding: 38px 34px 28px 34px;
  animation: cookie-popin 0.33s cubic-bezier(0.73,0.06,0.32,1.02);
}
#cookie-modal.open { display: block; }
@keyframes cookie-popin {
  0% { opacity:0; transform: translate(-50%,-60%) scale(0.94); }
  100%{ opacity:1; transform: translate(-50%,-50%) scale(1); }
}
#cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #1B2233;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0 0;
}
.cookie-category label {
  font-size: 1.02rem;
  color: #213163;
}
.cookie-toggle {
  accent-color: #FDC300;
  width: 20px;
  height: 20px;
}
#cookie-modal .cookie-btns {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #2d365d;
  cursor: pointer;
}
#cookie-modal .close-modal:hover { color: #FDC300; }

/**** SOFT PASTEL PALETTE DETAILS ****/
body {
  background: linear-gradient(150deg, #FAF8FF 0%, #F4FAFF 100%);
}
.section {
  /* soft pastel background overlay */
  background: linear-gradient(90deg,rgba(250,250,255,0.75) 0%,rgba(240,245,252,0.87) 100%);
}
.text-section, .card, .feature, .testimonial-card, .team-member-card {
  /* slightly different soft white for layering */
  background: linear-gradient(98deg, #FFF 90%, #F7F6FC 100%);
}

/**** SPACING AND VISUAL HIERARCHY ****/
.section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 32px;
  }
  .text-section { padding: 16px 9px; }
}

/**** INTERACTIVE STATE & ANIMATIONS ****/
.card, .feature, .team-member-card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.15s, border-color 0.12s;
}
button, .cta-button {transition: background 0.19s, color 0.18s, box-shadow 0.16s, transform 0.12s;}

/**** ACCESSIBILITY CONTRAST ENSURED FOR TESTIMONIALS ****/
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #182654;
}
.testimonial-card.testimonial-highlight, 
.testimonial-card.testimonial-highlight p,
.testimonial-card.testimonial-highlight strong {
  color: #1B2233;
  background-color: #f7ede6;
}

/**** MISC ****/
::-webkit-input-placeholder { color: #b1b8cd; }
::-moz-placeholder { color: #b1b8cd; }
:-ms-input-placeholder { color: #b1b8cd; }
::placeholder { color: #b1b8cd; }

/**** UTILITY CLASSES ****/
.d-none { display: none !important; }
.mt-2 { margin-top: 0.5em; }
.mt-4 { margin-top: 1.2em; }
.relative { position: relative; }
.center { text-align: center !important; }

/**** ENSURE SPACE BETWEEN CARDS ****/
.card:not(:last-child),
.team-member-card:not(:last-child),
.feature:not(:last-child),
.testimonial-card:not(:last-child),
.individual-service-block:not(:last-child) {
  margin-bottom: 20px;
}

/**** MEDIA QUERIES FOR RESPONSIVENESS ****/
@media (max-width: 768px) {
  .container{
    padding: 0 7px;
  }
  .content-grid, .feature-grid, .card-container, .testimonial-slider, .testimonial-list, .team-member-cards {
    flex-direction: column !important;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-top: 13px; padding-bottom: 13px;
  }
  .mobile-menu {
    padding-top: 0px;
  }
  .footer-contact, .footer-nav {
    align-items: flex-start;
    text-align: left;
    gap: 13px;
  }
  .footer-contact span { gap: 6px;}
  #cookie-modal { padding: 32px 12px 22px 18px; width: 93vw; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
  .card, .text-section, .team-member-card, .feature { padding: 12px 5px; }
  .footer-contact, .footer-nav { font-size: 0.95rem;}
}
