/* --- CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAF7FC;
  color: #222E3A;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #35569B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #42D1E6;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

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


/* --- PASTEL PALETTE --- */
:root {
  --primary: #15213B;
  --secondary: #42D1E6;
  --accent: #FAC142;
  --pastel-rose: #FFE3EA;
  --pastel-blue: #D7F7FE;
  --pastel-lavender: #F3E8FD;
  --pastel-green: #EAFBF0;
  --pastel-yellow: #FFF7DC;
  --card-shadow: 0 4px 18px rgba(67, 144, 176, 0.10), 0 1.5px 6px rgba(180,200,230,0.06);
}


/* --- TYPOGRAPHY SYSTEM --- */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 18px; 
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.18;
}
@media (min-width: 768px) {
  h1, .hero h1 { font-size: 2.8rem; }
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--primary);
}
@media (min-width: 768px) {
  h2 { font-size: 2rem; }
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
}
p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #28415B;
}
small {
  font-size: 0.91rem;
}


/* --- LAYOUT CONTAINERS & MAIN SPACING --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.text-section {
  gap: 10px !important;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-lavender);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 28px 20px 24px 20px;
  transition: box-shadow .23s, transform .22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(67,144,176,0.14), 0 3px 16px rgba(180,200,230,0.14);
  transform: translateY(-2px) 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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 22px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: 1.2em;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(128,176,208,0.13);
  font-size: 1rem;
  color: #1F3148;
}
.testimonial-card p {
  margin-bottom: 2px;
  color: #14244C;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #29598B;
  opacity: .85;
}

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


/* --- HEADER & NAVIGATION --- */
header {
  background: #FFFDFB;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 3px 9px rgba(110,80,163,0.06);
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px 0;
}
.logo-holder {
  flex-shrink: 0;
  height: 38px;
  display: flex;
  align-items: center;
}
.logo-holder img {
  height: 38px;
  width: auto;
  display: block;
}
nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-right: 0;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 8px 14px;
  border-radius: 8px;
  color: #2B3553;
  letter-spacing: -0.02em;
  transition: background .18s, color .19s;
}
nav ul li a.cta {
  background: linear-gradient(90deg,var(--secondary),var(--accent));
  color: #15213B;
  font-weight: 700;
  border-radius: 18px;
  font-size: 1.07rem;
  margin-left: 8px;
  box-shadow: 0 2px 12px #42d1e619;
  padding: 9px 22px;
  transition: box-shadow .18s,background 0.18s;
}
nav ul li a.cta:hover {
  background: var(--accent);
  color: #15213B;
  box-shadow: 0 3px 22px #fac14236;
}
nav ul li a:hover {
  background: var(--pastel-blue);
  color: #158fa1;
}

/* --- MOBILE BURGER NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 9px;
  margin-left: 10px;
  transition: background .19s, color .2s;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1023px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(130deg, #FCE8F1 0%, #D6F3FA 100%);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.76,.04,.27,.96);
    box-shadow: 0 8px 22px #aaf0b725;
    opacity: 1;
  }
  .mobile-menu.open {
    transform: translateX(0);
    animation: menuSlideIn .45s cubic-bezier(.76,.04,.27,.96);
    display: flex;
  }
}
@keyframes menuSlideIn {
  0% { transform: translateX(-100%); opacity:.7; }
  100% { transform: translateX(0); opacity:1; }
}
.mobile-menu-close {
  margin: 10px 18px 0 auto;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #5862BA;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 7px;
  transition: background .13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  margin-top: 25px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.4rem;
  color: #253672;
  border-radius: 10px;
  padding: 12px 24px;
  width: 90vw;
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 500;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover {
  background: var(--pastel-lavender);
  color: #42D1E6;
}


/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(130deg,#FFE3EA 0%, #D7F7FE 90%);
  padding: 56px 0 32px 0;
  border-bottom-left-radius: 48px 39px;
  border-bottom-right-radius: 32px 44px;
  box-shadow: 0 8px 56px #d5c1ee1a;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 13px;
  margin-bottom: 0;
}
.hero h1 {
  background: linear-gradient(to right,#2B3553 60%,#42D1E6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.15rem;
  color: #2B3553;
  max-width: 480px;
  margin: 0 auto 8px auto;
}


/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: linear-gradient(88deg,#42D1E6 73%,#FAC142 100%);
  color: #1b1c2b;
  border: none;
  border-radius: 20px;
  padding: 12px 26px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 18px #8ed7e949;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background .23s, box-shadow .17s, transform .11s, color .13s;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #FAC142;
  color: #22213b;
  box-shadow: 0 8px 22px #fac14224;
  transform: translateY(-2px) scale(1.01);
}


/* --- FEATURES & GRID (NO CSS GRID!) --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 22px;
}
.feature-grid > div {
  background: var(--pastel-green);
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(125,228,187,0.15);
  padding: 28px 26px 20px 26px;
  min-width: 240px;
  flex: 1 1 230px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: transform .18s, box-shadow .15s;
  margin-bottom: 20px;
}
.feature-grid > div img {
  height: 42px;
  margin-bottom: 4px;
  filter: saturate(.84) contrast(.97);
}
.feature-grid > div:hover {
  box-shadow: 0 4px 23px rgba(134,213,201,0.16);
  transform: scale(1.025);
}


/* --- TRUST BADGES --- */
.trust-badges {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
}
.trust-badges img {
  height: 40px;
  width: auto;
  filter: brightness(0.98) saturate(1.04) drop-shadow(0 2px 4px #42d1e611);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(92deg,#FFF7DC 8%, #FFE3EA 100%);
  padding: 44px 0 36px 0;
  margin-top: 46px;
  border-radius: 34px;
  box-shadow: 0 6px 26px #ffddc262;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 11px;
  margin-bottom: 0;
}
.cta-banner h2 {
  font-size: 2rem;
  color: #15213B;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cta-banner h2 { font-size: 1.25rem; }
}


/* --- FOOTER --- */
footer {
  background: linear-gradient(170deg,#EFF2FC 65%, #FFF7DC 100%);
  border-top: 2px solid #e8e7f3;
  margin-top: 23px;
  padding: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 14px 0;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-logo img {
  height: 36px;
}
.footer-logo span {
  color: #6C6F80;
  font-size: .98rem;
  max-width: 240px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: #31456A;
  font-size: .98rem;
  padding: 5px 12px;
  border-radius: 7px;
  transition: background .16s, color .15s;
}
.footer-nav a:hover {
  color: #42D1E6;
  background: var(--pastel-blue);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 9px;
}
.footer-social img {
  height: 28px;
  filter: saturate(1.05) contrast(1.02) drop-shadow(0 1px 4px #42d1e608);
  transition: filter .16s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: saturate(1.23) brightness(1.13) drop-shadow(0 2px 8px #42d1e61c);
}
.footer-copy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0 23px 0;
}
.footer-copy small {
  color: #848595;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}


/* --- PROJECTS & CASE STUDY CARDS --- */
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.case-study-card {
  flex: 1 1 255px;
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: 0 2px 6px #ffdfa01a;
  padding: 24px 22px;
  margin-bottom: 20px;
}
.project-story-block {
  background: var(--pastel-lavender);
  border-radius: 14px;
  padding: 18px 16px 14px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 7px #ebd2f70d;
}

/* --- FEATURED ARTICLES & TIPS --- */
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.featured-articles article {
  flex: 1 1 210px;
  background: var(--pastel-green);
  border-radius: 12px;
  padding: 17px 16px;
  box-shadow: 0 1px 2.5px #afece215;
}
.tips-list {
  margin: 18px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- THANK YOU PAGE --- */
.thankyou {
  background: linear-gradient(120deg,#F0F6FF 55%,#FCE8F1 100%);
  border-radius: 28px;
  margin: 18px 0 24px 0;
  padding: 32px;
  box-shadow: 0 4px 28px #f7e0fa15;
}

/* --- CUSTOM FORMS/EMBEDS (contact maps etc) --- */
.map-embed {
  background: var(--pastel-blue);
  padding: 12px 16px 9px 16px;
  border-radius: 11px;
  margin-top: 8px;
}

/* --- UL/OL LIST SPACING --- */
ul, ol {
  margin-bottom: 14px;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  position: relative;
  color: #28415B;
}
ul li::before {
  content:'';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
  opacity:.46;
}

ol li::before {
  display: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .feature-grid > div, .case-study-card, .featured-articles article {
    min-width: 170px;
    max-width: 48vw;
  }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-grid, .feature-grid, .project-highlights, .featured-articles {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer-main, .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-logo span { max-width: 99vw; }
  .section {
    margin-bottom: 38px;
    padding: 28px 6px;
  }
  .hero {
    padding: 30px 0 21px 0;
    border-bottom-left-radius: 24px 16px;
    border-bottom-right-radius: 12px 23px;
  }
  .cta-banner {
    padding: 24px 0 18px 0;
    margin-top: 19px;
    border-radius: 18px;
  }
  .feature-grid > div, .case-study-card, .featured-articles article {
    min-width: 130px;
    max-width: 100vw;
    padding: 17px 11px 14px 11px;
  }
  .map-embed { padding: 10px 9px 7px 9px; }
  .thankyou { padding: 18px; }
}

/* --- MICROINTERACTIONS & EFFECTS --- */
button, .cta, input, select, textarea {
  transition: box-shadow .18s, border .15s, background .18s, color .14s;
}
button:active,
.cta:active {
  transform: scale(0.98);
}

/* --- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: linear-gradient(92deg,#FFF7DC 8%, #FFE3EA 100%);
  box-shadow: 0 -2px 24px #e8e1e433;
  padding: 16px 22px 16px 18px;
  min-height: 72px;
  border-top: 2px solid #E3DEE9;
  font-family: 'Roboto', Arial, sans-serif;
  color: #263947;
  animation: cookieIn .5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieIn {
  0% { transform: translateY(120px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  font-size: 1.03rem;
  color: #3b3372;
  margin-right: 18px;
  flex: 1 1 auto;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  background: #D7F7FE;
  border: none;
  border-radius: 9px;
  padding: 9px 19px;
  color: #1a2263;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .19s, color .13s, box-shadow .14s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#FAC142,#42D1E6 93%);
  color: #15213B;
  box-shadow: 0 2px 7px #fac14231;
}
.cookie-btn.reject {
  background: var(--pastel-rose);
  color: #bb2852;
  border: 1px solid #fac14233;
}
.cookie-btn.settings {
  background: linear-gradient(90deg,#EFF2FC,#F3E8FD 70%);
  color: #283959;
  border: 1px solid #EFF2FC;
}
.cookie-btn:hover {
  box-shadow: 0 3px 9px #fac14213;
  background: #FFE3EA;
  color: #356C86;
}
.cookie-btn.accept:hover { background: #FAC142; color: #15213B; }
.cookie-btn.reject:hover { background: #FFE3EA; color: #bb2852; }
.cookie-btn.settings:hover { background: #D7F7FE; color: #1a2263; }
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px 10px 12px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000000;
  background: rgba(35,38,42,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .25s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(112deg, #F3E8FD 35%, #FFF7DC 100%);
  border-radius: 20px;
  box-shadow: 0 8px 42px #b291e522;
  padding: 36px 28px 28px 28px;
  min-width: 312px;
  max-width: 98vw;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalPopIn .23s cubic-bezier(.82,.04,.23,.98);
}
@keyframes modalPopIn {
  0% { transform: scale(0.94); opacity:0.5; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  margin-bottom: 11px;
  color: #2B3553;
}
.cookie-category {
  background: var(--pastel-blue);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 12px 13px 8px 13px;
  box-shadow: 0 1px 6px #42d1e60f;
  display: flex; flex-direction: row;
  align-items: center; gap: 12px;
}
.cookie-category label {
  font-weight: 500;
  color: #28395B;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-category input[type=checkbox][disabled] {
  opacity: .65;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 18px;
}
@media (max-width:520px){
  .cookie-modal { padding: 22px 4vw 16px 4vw; min-width: 0; }
  .cookie-category { padding:9px 3vw 6px 3vw; }
}

/* --- OTHER UTILS & MICRO STYLES --- */
::-webkit-scrollbar {
  width: 9px;
  background: #e9f6fa;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #f3e8fd;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D7F7FE;
}

[tabindex="-1"]:focus {
  outline:none !important;
}

@media (hover: hover) {
  a, button, .cta, .cookie-btn, .footer-social img {
    cursor: pointer;
  }
}

/* mandatory spacing & alignment patters for layouts (from prompt) */
.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; }