/*------------------------------------------------------
  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, 
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F4F8;
  color: #253347;
  min-height: 100vh;
  font-size: 16px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #58A99E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #253347;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/*------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #253347;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, address {
  font-size: 1rem;
  color: #425167;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  font-weight: 700;
}

/* Fun Display Accent for Playfulness */
.hero h1, .cta-section h2, .primary-cta, .testimonials h2,
.blog-list h2, .thank-you h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: none;
  color: #253347;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(88, 169, 158, 0.07);
}

/*------------------------------------------------------
  LAYOUT & CONTAINERS: FLEXBOX!
------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(88,169,158,0.12);
  padding: 24px;
  transition: transform 0.27s cubic-bezier(.68,-0.6,.32,1.6), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(88,169,158,0.22);
}
.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;
  background: #FDFDFD;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(88, 169, 158, 0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 400px;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(88,169,158,0.20);
  transform: translateY(-4px) scale(1.04);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Playful Dynamic + Spacing/Alignment Patterns */
.features, .features-list, .features-grid, .project-list, .services-list, .opportunity-grid, .team-list, .article-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-list, .features-grid, .opportunity-grid, .project-list, .article-teasers {
  margin-top: 12px;
  margin-bottom: 24px;
}
.features-list > .feature, .features-grid > .feature, .services-list > .service, .opportunity-grid > .opportunity, .project-list > .project, .team-list > li, .article-teasers > article {
  flex: 1 1 295px;
  min-width: 240px;
  max-width: 335px;
  background: #F2F4F8;
  border-radius: 14px;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 2px 18px 0 rgba(88,169,158,0.09);
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 20px;
}
.features-grid > .feature:hover, .features-list > .feature:hover, .opportunity-grid > .opportunity:hover, .project-list > .project:hover, .services-list > .service:hover, .article-teasers > article:hover {
  box-shadow: 0 8px 32px rgba(88,169,158,0.15);
  transform: scale(1.04) rotate(1deg);
}

/* Key Metrics, Tags, Lists */
.key-metrics, .benefits-list, .details-teasers, .performance-highlights, .investment-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 10px 0 14px 0;
}
.key-metrics li, .benefits-list li, .details-teasers li, .performance-highlights li, .investment-benefits li {
  background: #FFF;
  border-radius: 12px;
  padding: 8px 16px;
  color: #425167;
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(88,169,158,0.08);
}

/**** Accordions, FAQ playful effect ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F2F4F8;
  border-radius: 12px;
  padding: 18px 18px 12px 24px;
  box-shadow: 0 2px 10px rgba(88,169,158,0.09);
  transition: box-shadow 0.16s, transform 0.16s;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 5px 20px rgba(88,169,158,0.15);
  transform: translateY(-2px) scale(1.015);
}

.categories-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.categories-filter a {
  background: #FFDD57;
  color: #253347;
  border-radius: 10px;
  padding: 6px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .96rem;
  transition: background 0.18s, color 0.18s;
}
.categories-filter a:hover {
  background: #58A99E;
  color: #FFF;
}

/*------------------------------------------------------
  NAVIGATION & HEADER
------------------------------------------------------*/
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(37,51,71,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 18px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: none;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #253347;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 2px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #58A99E;
  background: #F2F4F8;
}
.main-nav .primary-cta {
  background: #58A99E;
  color: #FFF !important;
  border-radius: 18px;
  padding: 10px 26px;
  margin-left: 12px;
  font-size: 1.03rem;
  font-weight: 800;
  box-shadow: 0 3px 16px rgba(88,169,158,0.13);
  transition: background 0.22s, transform 0.17s;
  letter-spacing: 1px;
}
.main-nav .primary-cta:hover {
  background: #253347;
  color: #FFF !important;
  transform: scale(1.05) rotate(-2deg);
}

/* Burger Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #FFC05E;
  color: #253347;
  font-size: 2rem;
  border: none;
  outline: none;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(88,169,158,0.13);
  margin-left: 18px;
  transition: background .2s, color .2s, box-shadow .2s;
  z-index: 101;
}
.mobile-menu-toggle:hover {
  background: #58A99E;
  color: #FFF;
}

/* MOBILE MENU OVERLAY (SLIDE) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 350px;
  max-width: 95vw;
  background: #FFF;
  box-shadow: -3px 0 16px rgba(88,169,158,0.23);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.63,-0.23,.62,1.21);
  display: flex;
  flex-direction: column;
  padding: 40px 18px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #253347;
  cursor: pointer;
  margin-bottom: 30px;
  padding: 6px;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #58A99E;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #253347;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 0;
  border-radius: 6px;
  font-weight: 700;
  text-align: left;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover {
  background: #FFDD57;
  color: #58A99E;
}
.mobile-nav a.primary-cta {
  background: #58A99E;
  color: #FFF !important;
  padding: 13px 0;
  border-radius: 18px;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.7px;
  margin-top: 13px;
}

/* Hide desktop nav on small screens, show burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/*------------------------------------------------------
  HERO SECTIONS + CTA
------------------------------------------------------*/
.hero {
  background: #FFDD57;
  background: linear-gradient(90deg, #FFF6CB 0%, #FFDD57 90%);
  padding: 50px 0 46px 0;
  min-height: 240px;
  display: flex;
  align-items: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 27px rgba(255,221,87,0.07);
  margin-bottom: 38px;
  animation: heroPop 0.9s cubic-bezier(.53,1.25,.53,1) 0.09s 1;
}
@keyframes heroPop {
  0% {opacity:0; transform: translateY(40px) scale(0.98);}
  100% {opacity:1; transform: none;}
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  color: #253347;
  font-size: 2.4rem;
  line-height: 1.12;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.hero p {
  color: #715632;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.cta-section {
  margin-bottom: 60px;
  padding: 46px 22px;
  background: #58A99E;
  color: #FFF;
  border-radius: 16px;
  box-shadow: 0 5px 32px rgba(37,51,71,0.14);
  text-align: left;
  animation: cheerPop 1.1s cubic-bezier(.68,-0.4,.32,1.2) 0.18s 1;
}
.cta-section h2 {
  color: #FFF;
  font-size: 2rem;
}
.cta-section .primary-cta {
  margin: 18px 0 0 0;
  background: #FFF !important;
  color: #253347 !important;
  font-weight: 900;
  box-shadow: 0 2px 18px rgba(255,255,255,0.23);
}
.cta-section .primary-cta:hover {
  background: #FFDD57 !important;
  color: #253347 !important;
}
.secondary-note, .privacy-note {
  color: #E4F1EF;
  margin-top: 12px;
  font-size: 1rem;
  opacity: 0.90;
}
@keyframes cheerPop {
  0% {opacity:0; transform: scale(0.98) translateY(24px);}
  100% {opacity:1; transform: none;}
}

/*------------------------------------------------------
  BUTTONS & INTERACTIVE ELEMENTS
------------------------------------------------------*/
.primary-cta {
  display: inline-block;
  background: #58A99E;
  color: #FFF !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.13rem;
  border: none;
  border-radius: 18px;
  padding: 13px 36px;
  box-shadow: 0 3px 13px 0 rgba(88,169,158,0.10);
  margin-top: 4px;
  cursor: pointer;
  transition: background .18s, color .18s, transform .19s, box-shadow .18s;
  letter-spacing: 0.6px;
  outline: none;
  position: relative;
}
.primary-cta:hover, .primary-cta:focus {
  background: #253347;
  color: #FFDD57 !important;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 10px 32px 0 rgba(88,169,158,0.25);
}
.button, .read-more {
  display: inline-block;
  background: #FFDD57;
  color: #253347;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 10px 22px;
  transition: background .16s, color .16s, transform .16s;
  margin: 9px 0 0 0;
}
.button:hover, .read-more:hover {
  background: #58A99E;
  color: #FFF;
  transform: scale(1.06);
}

/*------------------------------------------------------
  SECTION/COMPONENT-SPECIFIC
------------------------------------------------------*/
.features-list img, .features-grid img, .opportunity-grid img, .services-list img, .steps-timeline img, .icons-briefs img, .project-list img {
  height: 50px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 2px 6px #FFDD57);
}
.values-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.values-grid div {
  background: #F2F4F8;
  border-radius: 12px;
  padding: 22px 17px 12px 17px;
  min-width: 180px;
  max-width: 290px;
  box-shadow: 0 2px 12px rgba(88,169,158,0.08);
  font-family: 'Roboto', Arial, sans-serif;
}
.services-list, .steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service, .step {
  background: #FFF6CB;
  border-radius: 14px;
  padding: 19px 17px 13px 19px;
  min-width: 215px;
  box-shadow: 0 2px 14px rgba(255,221,87,0.10);
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.16s, transform 0.13s;
}
.service:hover, .step:hover {
  box-shadow: 0 8px 26px rgba(255,221,87,0.17);
  transform: scale(1.035);
}
.team-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.team-list li {
  background: #F2F4F8;
  border-radius: 13px;
  padding: 18px 17px 10px 17px;
  min-width: 200px;
  max-width: 320px;
  box-shadow: 0 1px 10px rgba(88,169,158,0.08);
}
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.project {
  min-width: 220px;
  max-width: 335px;
  background: #F2F4F8;
  border-radius: 14px;
  padding: 22px 17px 10px 22px;
  box-shadow: 0 2px 14px rgba(88,169,158,0.12);
}

.icons-briefs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.icons-briefs > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #FFF;
  border-radius: 12px;
  padding: 15px 18px;
  box-shadow: 0 1px 6px rgba(255,221,87,0.09);
  font-weight: 700;
  font-size: 1rem;
  min-width: 110px;
  margin-bottom: 20px;
}

.newsletter-signup {
  margin: 18px 0 0 0;
}

address {
  font-style: normal;
  font-size: 0.95rem;
  margin-top: 10px;
  color: #425167;
}

footer {
  background: #253347;
  color: #FFF;
  border-radius: 20px 20px 0 0;
  width: 100%;
  shadow: 0 -2px 16px rgba(37,51,71,0.07);
  margin-top: 68px;
  padding: 36px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
footer img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 6px 0;
}
.footer-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background .16s, color .13s;
}
.footer-nav a:hover {
  background: #FFDD57;
  color: #253347;
}
footer address,
footer address a,
footer address span {
  color: #E2EDF2;
  opacity: 0.94;
  font-size: 0.95rem;
}

/**** Blog Articles ****/
.article-teasers > article {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  background: #FFF;
  border-radius: 14px;
  padding: 17px 18px 13px 18px;
  box-shadow: 0 1px 10px rgba(255,221,87,0.07);
  min-width: 200px;
  max-width: 370px;
}
.article-teasers h3 {
  margin-bottom: 7px;
  font-weight: 800;
  color: #253347;
}
.read-more {
  margin-top: 11px;
  align-self: flex-end;
}

/**** Legal Section (Policy Pages) ****/
.legal {
  background: #FFF6CB;
  padding: 40px 18px;
  border-radius: 15px;
  margin-bottom: 44px;
  box-shadow: 0 2px 16px 0 rgba(255,221,87,0.04);
}
.legal h1 {
  margin-bottom: 16px;
  font-size: 2.05rem;
}
.legal h2 {
  margin: 16px 0 8px 0;
  font-size: 1.23rem;
}
.legal ul {
  margin-left: 14px;
  margin-bottom: 14px;
}

/**** Thank You Section ****/
.thank-you h1 {
  color: #58A99E;
  margin-bottom: 20px;
}

/**** Contact Info Section ****/
.contact-info address ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0 0 0;
}
.contact-info address li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F2F4F8;
  border-radius: 11px;
  padding: 8px 14px;
  font-size: 1rem;
  color: #253347;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info address img {
  width: 20px;
  height: 20px;
  filter: grayscale(30%) brightness(1.05);
}

/*------------------------------------------------------
  TESTIMONIALS (emphasis on contrast)
------------------------------------------------------*/
.testimonials {
  background: #FFDD57;
  border-radius: 18px;
  padding: 54px 10px 38px 10px;
  margin-bottom: 50px;
  box-shadow: 0 4px 32px rgba(255,221,87,0.08);
}
.testimonials h2 {
  color: #253347;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #FFF;
  color: #253347;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(88,169,158,0.10);
  min-width: 220px;
  max-width: 350px;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #253347;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #58A99E;
  font-size: .98rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.2px;
}

/*------------------------------------------------------
  PLAYFUL, DYNAMIC MICRO-ANIMATIONS & DECOR
------------------------------------------------------*/
.section, .features-grid > .feature, .card, .testimonial-card, .project, .article-teasers > article {
  animation: cardFloat 0.8s cubic-bezier(.68,-0.4,.32,1.2) 0.15s 1;
}
@keyframes cardFloat {
  0% {opacity: 0; transform: translateY(30px) scale(0.97);}
  100% {opacity: 1; transform: none;}
}

/***** Fun, Bouncy Icon Hover *****/
.features-grid img, .features-list img, .project-list img, .services-list img, .step img, .icons-briefs img {
  transition: transform .28s cubic-bezier(.58,-0.32,.58,1.47);
}
.features-grid .feature:hover img, .features-list .feature:hover img, .project:hover img, .services-list .service:hover img, .step:hover img, .icons-briefs > div:hover img {
  transform: scale(1.18) rotate(-8deg);
}

/***** List Item Hover *****/
.key-metrics li:hover, .benefits-list li:hover, .details-teasers li:hover, .performance-highlights li:hover, .investment-benefits li:hover {
  background: #58A99E;
  color: #FFF;
  transform: scale(1.07) rotate(-2deg);
  transition: background 0.16s, transform 0.14s, color 0.18s;
}

/*------------------------------------------------------
  COOKIE BANNER
------------------------------------------------------*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #253347;
  color: #FFF;
  box-shadow: 0 -2px 26px rgba(37,51,71,0.1);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 20px 18px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  transition: transform 0.45s cubic-bezier(.65,-0.3,.45,1.2), opacity 0.26s;
  border-radius: 16px 16px 0 0;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
#cookie-banner button {
  background: #FFDD57;
  color: #253347;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 7px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
#cookie-banner button:hover {
  background: #58A99E;
  color: #FFF;
  transform: scale(1.09) rotate(-2deg);
}
#cookie-banner .cookie-settings {
  background: #58A99E;
  color: #FFF;
  font-weight: 900;
  padding: 7px 16px;
}
#cookie-banner .cookie-settings:hover {
  background: #253347;
  color: #FFDD57;
}

#cookie-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,51,71,0.14);
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s ease;
}
#cookie-modal.active {
  display: flex;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
#cookie-modal .modal-content {
  background: #FFF6CB;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,51,71,0.13);
  min-width: 350px;
  max-width: 95vw;
  padding: 40px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#cookie-modal h2 {
  font-size: 1.4rem;
  color: #253347;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 13px;
}
#cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #FFDD57;
  border-radius: 11px;
  padding: 10px 18px;
  margin-bottom: 10px;
}
#cookie-modal .category .toggle {
  margin-left: auto;
}
#cookie-modal .toggle input[type="checkbox"] {
  accent-color: #58A99E;
  margin-right: 4px;
  width: 24px;
  height: 24px;
}
#cookie-modal .modal-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  gap: 18px;
}
#cookie-modal .close-btn {
  background: none;
  border: none;
  color: #253347;
  font-size: 1.5rem;
  position: absolute;
  top: 16px;
  right: 36px;
  cursor: pointer;
  transition: color .13s;
}
#cookie-modal .close-btn:hover {
  color: #58A99E;
}

/*------------------------------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
------------------------------------------------------*/
@media (max-width: 1020px) {
  .features-list, .features-grid, .services-list, .opportunity-grid, .project-list, .team-list, .steps-timeline, .article-teasers {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
  }
  .features-list > .feature, .features-grid > .feature, .services-list > .service, .opportunity-grid > .opportunity, .project-list > .project, .team-list > li, .article-teasers > article {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 6px; }
  .hero { padding: 38px 0 28px 0; }
  .hero h1 { font-size: 1.6rem; }
  .section, .legal, .cta-section { padding: 24px 7px; }
  .content-grid, .text-image-section, .features-list, .features-grid, .services-list, .opportunity-grid, .team-list, .steps-timeline, .project-list, .article-teasers {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service, .opportunity, .project, .team-list li, .article-teasers > article {
    min-width: 0;
    max-width: 100vw;
  }
  .testimonial-slider, .icons-briefs {
    flex-direction: column;
    gap: 20px;
  }
  .values-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .logo img { height: 36px; }
  .footer-nav { gap: 9px; font-size: 0.99rem; }
  .modal-content { padding: 18px 5px !important; }
}
@media (max-width: 530px) {
  .hero { padding: 18px 0 14px 0; border-radius: 0 0 10px 10px; min-height: 60px; }
  .section, .legal, .cta-section { border-radius: 10px; padding: 10px 5px; }
  footer { border-radius: 8px 8px 0 0; }
  .mobile-menu { border-radius: 12px 0 0 12px; padding: 20px 7px 10px 10px; }
  #cookie-banner { font-size: 0.98rem; padding: 12px 3px; }
  #cookie-modal .modal-content { min-width: 190px; padding: 7px 6px 8px 8px; }
}

/*------------------------------------------------------
  EXTRA UTILITIES / MISC
------------------------------------------------------*/
.mt16 { margin-top: 16px; } .mb16 { margin-bottom: 16px; }
.mt24 { margin-top: 24px; } .mb24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.center { justify-content: center; align-items: center; }

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

/*------------------------------------------------------
  END OF CSS
------------------------------------------------------*/
