/* ---- 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #232b32;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

ul, ol {
  list-style-type: none;
}

a {
  color: #16537e;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #f1b300;
  text-decoration: underline;
}

/* ---- BRAND FONTS ---- */
h1, h2, h3, h4, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.1; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1.06rem; margin-bottom: 16px; }
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3, h4 { font-size: 1.05rem; }
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- HEADER NAV ---- */
header {
  background: #fff;
  border-bottom: 4px solid #16537e;
  position: relative;
  z-index: 1000;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  position: relative;
}
header nav .logo {
  margin-right: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
header nav a {
  color: #16537e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a.btn-primary {
  background: #f1b300;
  color: #16537e;
  margin-left: 18px;
  font-weight: bold;
  box-shadow: 0 2px 8px 0 rgba(241,179,0,0.07);
}
header nav a.btn-primary:hover, header nav a.btn-primary:focus {
  background: #fff;
  color: #f1b300;
  border: 2px solid #f1b300;
  text-decoration: none;
}
header nav a:hover:not(.btn-primary), header nav a:focus:not(.btn-primary) {
  background: #e6e9ed;
  color: #16537e;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  header nav {
    gap: 6px;
    font-size: 0.95rem;
    padding: 12px 12px 12px 20px;
  }
  header nav .logo { margin-right: 10px; }
  header nav a.btn-primary { margin-left: 5px; }
}

/* ---- MOBILE NAV ---- */
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 20px;
    right: 22px;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #16537e;
    border: 2px solid #16537e;
    z-index: 1102;
    transition: background 0.15s;
  }
  .mobile-menu-toggle:active {
    background: #e6e9ed;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #e6e9ed;
  z-index: 1200;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.23,1);
  box-shadow: 8px 0 32px 0 rgba(22,83,126,0.05);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #16537e;
  border-radius: 50%;
  border: 2px solid #16537e;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  margin: 20px 20px 0 20px;
  align-self: flex-end;
  transition: background 0.18s;
  z-index: 1202;
}
.mobile-menu-close:active,
.mobile-menu-close:hover {
  background: #e6e9ed;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 28px 0 36px;
  width: 100%;
}
.mobile-nav a {
  color: #16537e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 0;
  width: 100%;
  border-radius: 2px;
  background: transparent;
  transition: background 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #f1b300;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu.active,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---- HERO SECTIONS ---- */
.hero-section {
  min-height: 320px;
  background: linear-gradient(90deg, #e6e9ed 60%, #f1b300 100%);
  border-bottom-left-radius: 80px 20px;
  border-bottom-right-radius: 10px 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(241, 179, 0, 0.03);
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding: 60px 0 48px 0;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #16537e;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hero-section p {
  font-size: 1.18rem;
  color: #232b32;
  margin-bottom: 26px;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-section .content-wrapper { padding: 44px 0 32px 0; }
  .hero-section h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero-section .content-wrapper { padding: 28px 0 18px 0; }
  .hero-section { border-bottom-left-radius: 24px 10px; border-bottom-right-radius: 10px 24px; }
}

/* ---- FEATURE/INFO GRIDS (FLEX REQUIREMENT) ---- */
.feature-grid,
.service-grid,
.value-cards,
.project-stats ul,
.benefit-list ul,
.resources-list ul,
.article-list,
.project-list,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 20px;
}
.feature-grid > div,
.service-grid > div,
.value-cards > div,
.card {
  background: #fff;
  border-radius: 24px 4px 32px 12px;
  box-shadow: 0 6px 24px 0 rgba(22, 83, 126, 0.08);
  padding: 32px 24px 24px 24px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 4px solid #f1b300;
  border-bottom: 2px solid #e6e9ed;
}
.feature-grid > div:hover,
.service-grid > div:hover,
.value-cards > div:hover,
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(22, 83, 126, 0.16);
  transform: translateY(-3px) scale(1.018);
}
.feature-grid img,
.service-grid img,
.value-cards img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .feature-grid > div,
  .service-grid > div,
  .value-cards > div { min-width: 185px; max-width: 100%; }
  .feature-grid, .service-grid { flex-direction: column; gap: 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; }

/* ----- Section Spacing ------ */
.section:not(.hero-section) .container { padding-top: 0; }

/* ---- BUTTONS ---- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 28px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  text-align: center;
  outline: none;
  border: none;
  box-shadow: 0 3px 8px 0 rgba(241, 179, 0, 0.11);
  margin-top: 8px;
}
.btn-primary {
  background: #f1b300;
  color: #16537e;
}
.btn-primary:hover, .btn-primary:focus {
  background: #16537e;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(22, 83, 126, 0.09);
  text-decoration: none;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #16537e;
  color: #fff;
  margin-left: 10px;
  font-weight: 700;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f1b300;
  color: #16537e;
  transform: scale(1.04);
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: #16537e;
  border-radius: 64px 24px 24px 64px;
  box-shadow: 0 2px 32px 0 rgba(22, 83, 126, 0.10);
  color: #fff;
  margin-bottom: 0;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2,
.cta-section p {
  color: #fff;
  text-align: center;
}

.cta-section a.btn-primary {
  background: #fff;
  color: #16537e;
  font-weight: bold;
  margin-top: 18px;
}
.cta-section a.btn-primary:hover {
  background: #f1b300;
  color: #fff;
}

/* ---- TESTIMONIALS ---- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 24px 8px 24px 8px;
  background: #e6e9ed;
  color: #222;
  box-shadow: 0 3px 15px 0 rgba(22,83,126,0.04);
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.14s;
  border-left: 4px solid #16537e;
}
.testimonial-card:hover {
  box-shadow: 0 6px 31px 0 rgba(22,83,126,0.13);
  transform: scale(1.025);
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16537e;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---- FOOTER ---- */
footer {
  background: #16537e;
  color: #fff;
  padding: 36px 0 0 0;
  border-top-left-radius: 80px 30px;
  border-top-right-radius: 40px 32px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
  padding: 6px 3px;
}
footer nav a:hover, footer nav a:focus {
  color: #f1b300;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-contact img {
  width: 60px;
  height: auto;
  margin-right: 22px;
  align-self: flex-start;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}
.footer-contact li img {
  vertical-align: middle;
  margin-right: 7px;
  width: 21px;
  height: 21px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (max-width: 600px) {
  .footer-contact { flex-direction: column; align-items: center; gap: 16px; }
  .footer-contact img { margin: 0; }
}

/* ---- TEXT-IMAGE SECTION ---- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* ---- MISC COMPONENTS ---- */
.sustainability-commitment {
  background: #e6e9ed;
  color: #16537e;
  border-left: 4px solid #f1b300;
  border-radius: 12px 32px 32px 4px;
  padding: 18px 26px;
  margin: 16px 0;
  font-weight: bold;
  font-size: 1.04rem;
}
.benefit-list ul, .resources-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.benefit-list li, .resources-list li {
  background: #fff;
  border-radius: 14px 32px 12px 8px;
  box-shadow: 0 2px 18px 0 rgba(241,179,0,0.07);
  padding: 16px 25px;
  font-size: 1rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-left: 3px solid #16537e;
  margin-bottom: 12px;
  transition: box-shadow 0.16s;
}
.benefit-list li:hover, .resources-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(241, 179, 0, 0.13);
}

.project-stats ul {
  flex-direction: row;
  gap: 36px;
  margin-top: 20px;
  margin-bottom: 32px;
  justify-content: center;
}
.project-stats li {
  background: #e6e9ed;
  color: #16537e;
  border-radius: 28px 10px 28px 10px;
  padding: 16px 34px;
  font-size: 1.15rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 18px;
}

/**** LISTS ****/
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1.06rem;
  color: #232b32;
}
ol {
  margin-left: 20px;
  list-style-type: decimal;
}

/* Article/Project lists/texts */
.article-list, .project-list {
  flex-direction: column;
  gap: 22px;
  margin: 20px 0;
}
.article-list li, .project-list li {
  background: #fff;
  border-radius: 10px 18px 22px 10px;
  box-shadow: 0 1px 5px 0 rgba(22, 83, 126, 0.06);
  padding: 16px 20px 18px 26px;
  margin-bottom: 7px;
  border-left: 3px solid #f1b300;
  min-width: 220px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.article-list li:hover, .project-list li:hover {
  box-shadow: 0 3px 24px 0 rgba(22,83,126,0.11);
  transform: translateY(-2px) scale(1.01);
}

/**** PRIVACY/THANK YOU/LEGAL PAGES ****/
.privacy-section, .legal-section, .thankyou-section {
  background: #e6e9ed;
  border-radius: 36px 14px 36px 14px;
  padding: 64px 24px;
  margin: 42px 0; /* leaves at least 20px to next element by layout rules */
}
.privacy-section h1, .legal-section h1, .thankyou-section h1 {
  color: #16537e;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*****************
 * COOKIE BANNER *
 *****************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232b32;
  color: #fff;
  padding: 24px 16px;
  z-index: 2500;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 -6px 24px 0 rgba(22, 83, 126, 0.13);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideUpCookie 0.9s cubic-bezier(0.86,0,0.07,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__message {
  flex: 2 0 200px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex: 1 0 130px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 26px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.16s, color 0.16s, transform 0.13s, border 0.12s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-btn.accept {
  background: #f1b300;
  color: #16537e;
}
.cookie-btn.accept:hover {
  background: #fff;
  color: #16537e;
  border: 2px solid #f1b300;
}
.cookie-btn.reject {
  background: #fff;
  color: #16537e;
  border: 2px solid #e6e9ed;
}
.cookie-btn.reject:hover {
  background: #e6e9ed;
  color: #16537e;
  border: 2px solid #f1b300;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #f1b300;
}
.cookie-btn.settings:hover {
  background: #f1b300;
  color: #16537e;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    text-align: left;
    align-items: flex-start;
  }
  .cookie-banner__actions { flex-wrap: wrap; gap: 8px; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,43,50,0.7);
  z-index: 2600;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.3s;
}
.cookie-modal-overlay.active { display: flex; }
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #16537e;
  border-radius: 28px 10px 40px 20px;
  box-shadow: 0 8px 48px 0 rgba(22,83,126,0.21);
  padding: 36px 22px 26px 28px;
  max-width: 420px;
  width: 90vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: slideInCookieModal 0.45s cubic-bezier(0.67,0,0.32,1);
}
@keyframes slideInCookieModal {
  from { transform: scale(0.8) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #16537e;
  margin-bottom: 10px;
}
.cookie-modal-category {
  margin: 16px 0 18px 0;
  padding: 10px 0 7px 0;
  border-bottom: 1px solid #e6e9ed;
  display: flex; flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #16537e;
  font-size: 1rem;
  flex: 1 0 120px;
  user-select: none;
}
.cookie-modal-category input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #f1b300;
  border-radius: 7px;
  background: #e6e9ed;
  cursor: pointer;
  transition: background 0.14s, border 0.14s;
  position: relative;
  outline: none;
}
.cookie-modal-category input[type="checkbox"]:checked {
  background: #f1b300;
  border-color: #16537e;
}
.cookie-modal-category input[type="checkbox"]:checked::after {
  content: '\2714';
  position: absolute;
  left: 4px;
  top: 0;
  color: #16537e;
  font-size: 1.18rem;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-buttons .cookie-btn {
  min-width: 105px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #e6e9ed;
  color: #16537e;
  border-radius: 50%;
  border: 2px solid #f1b300;
  width: 36px;
  height: 36px;
  font-size: 1.28rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f1b300;
  color: #fff;
}
.cookie-modal-category .category-required {
  color: #999;
  font-size: 0.92em;
  margin-left: 10px;
  font-weight: 400;
}

@media (max-width: 530px) {
  .cookie-modal { padding: 22px 8px 18px 8px; }
}

/***** VISUAL ART/CREATIVE EFFECTS *****/
h1, h2 {
  text-shadow: 1px 2px 0px #e6e9ed, 2px 5px 12px #f1b30015;
  background: linear-gradient(91deg, #16537e 30%, #f1b300 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section h1, .cta-section h2 {
  -webkit-text-fill-color: #fff;
  background: none;
  background-clip: border-box;
  text-shadow: 2px 8px 20px #16537e33, 0px 1px 3px #f1b30077;
}

/***** MICRO-INTERACTIONS *****/
a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.17s, transform 0.15s;
}

/***** FORM ELEMENT STYLES *****/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  display: block;
  width: 100%;
  padding: 16px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232b32;
  border-radius: 8px;
  border: 2px solid #e6e9ed;
  margin-bottom: 20px;
  background: #fff;
  transition: border 0.13s;
}
input:focus, textarea:focus {
  border: 2px solid #f1b300;
}

/***** TABLES, CODEBLOCKS, ETC. (where used) *****/
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 36px;
}
th, td {
  border: 1px solid #e6e9ed;
  padding: 12px 10px;
  font-size: 1.01rem;
}
th {
  background: #e6e9ed;
  color: #16537e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/***** FLEXBOX LAYOUTS: PATTERN DEFINITIONS *****
.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; }
*/

/***** RESPONSIVE ADJUSTMENTS *****/
@media (max-width: 1000px) {
  .container { max-width: 100%; padding: 0 8px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 20px 6px; }
  .hero-section { margin-bottom: 32px; }
  .content-wrapper, .content-grid { gap: 14px; }
  .footer-contact { gap: 16px; padding: 0 2px; }
  .feature-grid, .service-grid,
  .value-cards, .benefit-list ul,
  .resources-list ul, .card-container,
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid { flex-direction: column; gap: 12px; }
  .project-stats ul { gap: 14px; flex-direction: column; }
}
@media (max-width: 400px) {
  .footer-contact ul, .content-wrapper { font-size: 0.94em; }
}

/***** CREATIVE/DECORATIVE ELEMENTS *****/
/* Add colored pseudo-element waves/artistic borders where artistic. */
.hero-section:before {
  content: '';
  display: block;
  position: absolute;
  top: -50px; left: 40%;
  width: 300px; height: 160px;
  z-index: 1;
  background: #16537e33;
  border-radius: 55% 45% 50% 80%;
  filter: blur(22px);
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-20deg);
}
.cta-section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -48px; right: 24px;
  width: 108px; height: 48px;
  background: #f1b300;
  border-radius: 61% 39% 38% 62%;
  opacity: 0.12;
  filter: blur(13px);
  pointer-events: none;
}

/***** SCROLLBAR STYLING (optional) *****/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #e6e9ed;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}

/***** ACCESSIBILITY & MISC *****/
:focus-visible {
  outline: 2px solid #16537e;
  outline-offset: 2px;
}

[aria-current="page"] {
  border-bottom: 3px solid #f1b300;
  color: #f1b300;
  background: #e6e9ed;
  border-radius: 2px;
  font-weight: 700;
}

/***** HIDE AND SHOW CLASSES *****/
.hide { display: none !important; }
.show { display: block !important; }

/***** PRINT STYLES *****/
@media print {
  header, nav, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  main { margin: 0; }
  .container, .section { max-width: 100%; padding: 0; margin: 0; }
}

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