/* ========================
   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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background: #F3F4F6;
}
body {
  min-height: 100%;
  font-family: 'Roboto', 'Georgia', 'Times New Roman', serif;
  color: #2A3C53;
  font-size: 16px;
  line-height: 1.65;
  background: #F3F4F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  color: #2A3C53;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.125rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote {
  margin-bottom: 16px;
}
ul, ol { padding-left: 24px; }
strong, b {
  font-weight: bold;
}
a {
  color: #2A3C53;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #87B6A7;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
hr {
  border: 0;
  border-top: 1px solid #E0E1E7;
  margin: 32px 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 2px dashed #87B6A7;
  outline-offset: 2px;
}
/* ============================
      GENERAL LAYOUT
=============================*/
.container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(42,60,83,0.04);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section:last-child { margin-bottom: 0; }
/* =============================
       HEADER & NAVIGATION
============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(42,60,83,0.03);
  border-bottom: 1px solid #E0E1E7;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 45px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  color: #2A3C53;
  padding: 8px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #87B6A7;
  transition: width 0.2s;
  margin-top: 4px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2A3C53;
  border-radius: 32px;
  padding: 12px 34px;
  margin-left: 28px;
  box-shadow: 0 2px 8px rgba(42,60,83,0.10);
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: #87B6A7;
  color: #2A3C53;
  box-shadow: 0 5px 16px rgba(135,182,167,0.13);
}
.mobile-menu-toggle {
  display: none;
  background: #2A3C53;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 36px;
  padding: 7px 18px; 
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1201;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #87B6A7;
  color: #fff;
}
/* ==========================
      MOBILE NAVIGATION
===========================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 4px 0 20px rgba(42,60,83,0.10);
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  color: #2A3C53;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #87B6A7;
  background: #EEF2F1;
  border-radius: 40px;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 18px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.18rem;
  color: #2A3C53;
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #87B6A7;
}
@media (max-width: 990px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ========================
      HERO, SECTIONS
========================= */
.hero, .services-hero, .resources-hero, .team-hero, .testimonials-hero, .contact-hero, .thank-you {
  background: #EFEFF4;
  padding: 60px 0 56px 0;
  border-bottom: 1px solid #E0E1E7;
}
.hero h1, .services-hero h1, .resources-hero h1, .team-hero h1, .testimonials-hero h1, .contact-hero h1, .thank-you h1 {
  color: #2A3C53;
  font-size: 2.5rem;
  font-family: 'Montserrat', 'Georgia', serif;
}
.hero p, .services-hero p, .resources-hero p, .team-hero p, .testimonials-hero p, .contact-hero p {
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.about-highlight, .about, .approach, .values, .newsletter, .legal-policy, .contact-info, .process-overview, .resources-list, .team-values, .about {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(42,60,83,0.04);
  padding: 40px 20px;
}
.cta {
  background: #2A3C53;
  border-radius: 16px;
  color: #fff;
  padding: 56px 20px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(42,60,83,0.05);
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #EEF2F1;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.cta .cta-button {
  background: #87B6A7;
  color: #2A3C53;
  box-shadow: 0 4px 16px rgba(135,182,167,0.11);
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff;
  color: #2A3C53;
  border: 1px solid #87B6A7;
}
@media (max-width: 768px) {
  .hero, .services-hero, .resources-hero, .team-hero, .testimonials-hero, .contact-hero, .thank-you {
    padding: 38px 0 36px 0;
  }
  .about-highlight, .about, .approach, .values, .newsletter, .legal-policy, .contact-info, .process-overview, .resources-list, .team-values, .about {
    padding: 24px 8px;
  }
  .cta {
    padding: 36px 8px;
  }
}
/* =========================
      CARD & LAYOUTS
========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 28px 24px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(42,60,83,0.07);
  min-width: 260px;
  flex: 1 1 300px;
}
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(42,60,83,0.03);
  padding: 28px 20px 22px 20px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #2A3C53;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.97rem;
  color: #3A505F;
}
.feature-item .price {
  margin-top: 10px;
  font-weight: 600;
  color: #87B6A7;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(135,182,167,0.12);
  transform: translateY(-4px) scale(1.013);
}
/* Team Profile Cards */
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(42,60,83,0.08);
  padding: 30px 22px 18px 22px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.team-member-card img {
  width: 56px; height: 56px;
  margin-bottom: 14px;
}
.team-member-card h3 { color: #2A3C53; font-size: 1.18rem; }
.team-member-card p { color: #3A505F; font-size: 0.98rem; }
.team-member-card:hover, .team-member-card:focus-within {
  box-shadow: 0 8px 30px rgba(135,182,167,0.11);
  transform: translateY(-3px) scale(1.012);
}
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.03rem;
  color: #2A3C53;
  font-weight: 500;
  background: #F5FAF8;
  border-radius: 10px;
  padding: 15px 22px;
}
.value-list img {
  width: 32px;
  height: 32px;
}
.resource-links {
  margin-bottom: 20px;
}
.resource-links li {
  margin-bottom: 10px;
  padding-left: 0;
}
.resource-links a {
  font-size: 1.03rem;
  color: #2A3C53;
  text-decoration: underline;
  transition: color 0.18s;
}
.resource-links a:hover, .resource-links a:focus { color: #87B6A7; }
.articles-snippets li {
  margin-bottom: 10px;
  color: #3A505F;
}
.benefits-list ul,
.benefits-list {
  list-style: disc inside;
  padding-left: 0;
}
.benefits-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #425161;
}
@media (max-width: 900px) {
  .feature-grid, .team-member-list, .value-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .team-member-card {
    min-width: unset;
    width: 100%;
  }
}
/* ================================
      TESTIMONIALS CARDS
================================= */
.testimonials-preview, .testimonial-list {
  background: #F6FAF8;
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(42,60,83,0.10);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: #2A3C53;
  font-size: 1.09rem;
  line-height: 1.55;
  font-family: 'Georgia', 'Montserrat', serif;
  margin-bottom: 0;
}
.testimonial-card span {
  display: block;
  font-style: normal;
  color: #87B6A7;
  font-size: 1rem;
  margin-top: 10px;
  font-family: 'Montserrat', 'Georgia', serif;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px;
  }
}
/* ===================
  ABOUT / TEXT SECTION
=====================*/
.text-section ul,
.text-section ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1.07rem;
  color: #425161;
  font-family: 'Roboto', 'Georgia', serif;
}
.text-section h2, .text-section h3 { margin-bottom: 12px; }
/* Blockquote for team page */
blockquote {
  font-family: 'Georgia', 'Montserrat', serif;
  color: #2A3C53;
  font-style: italic;
  background: #F5FAF8;
  border-left: 4px solid #87B6A7;
  margin: 24px 0 0 0;
  padding: 14px 18px;
  border-radius: 10px;
}
/* ==================
      FOOTER
=================== */
footer {
  width: 100%;
  background: #2A3C53;
  color: #fff;
  padding: 50px 0 0 0;
  border-top: 1px solid #E0E1E7;
  font-size: 0.97rem;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-cols > div {
  flex: 1 1 220px;
  margin-bottom: 24px;
}
.footer-cols img {
  height: 38px;
  margin-bottom: 16px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', 'Georgia', serif;
  padding: 4px 0;
  transition: color 0.2s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #87B6A7;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #3D5061;
  padding: 18px 0 6px 0;
  text-align: center;
  color: #B7C2CE;
  font-size: 0.93rem;
}
@media (max-width: 900px) {
  .footer-cols {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 580px) {
  footer {
    padding: 28px 0 0 0;
  }
  .footer-cols {
    gap: 12px;
  }
}
/* ===================
       COOKIE BANNER
==================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(42,60,83,0.10);
  border-top: 2px solid #87B6A7;
  padding: 24px 20px 18px 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-fadein 0.6s;
}
.cookie-banner p {
  color: #2A3C53;
  font-size: 1.03rem;
  line-height: 1.6;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-width: 120px;
  padding: 9px 28px;
  border-radius: 28px;
  background: #87B6A7;
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(135,182,167,0.08);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.reject {
  background: #EFEFF4;
  color: #2A3C53;
  border: 1px solid #87B6A7;
}
.cookie-btn.settings {
  background: #2A3C53;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2A3C53;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #C5DDD6;
  color: #283846;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #87B6A7;
  color: #2A3C53;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 19px 8px 13px 8px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
}
/* =============================
  COOKIE SETTINGS POPUP/MODAL
============================= */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,60,83,0.19);
  z-index: 15001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.24s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(42,60,83,0.13);
  width: 92vw;
  max-width: 430px;
  padding: 35px 32px 26px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-pop 0.22s;
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.26rem;
  margin-bottom: 10px;
  color: #2A3C53;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Roboto', serif;
  color: #2A3C53;
  font-size: 1rem;
}
.cookie-toggle {
  accent-color: #87B6A7;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.cookie-modal .cookie-actions {
  margin-top: 19px;
  gap: 22px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 9px;
  right: 17px;
  font-size: 1.5rem;
  color: #2A3C53;
  background: none;
  cursor: pointer;
  border: none;
  z-index: 1;
  padding: 6px 7px;
  border-radius: 22px;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #F3F4F6;
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(48px) scale(.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 490px) {
  .cookie-modal {
    padding: 15px 7px 15px 12px;
  }
}
/* =============================
      RESPONSIVE TYPOGRAPHY
============================= */
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .hero h1, .services-hero h1, .resources-hero h1, .team-hero h1, .testimonials-hero h1, .contact-hero h1, .thank-you h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.10rem; }
}
/* =============================
      HELPER CLASSES & GLOBALS
============================= */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.flex-row    { display: flex; flex-direction: row; }
.flex-col    { display: flex; flex-direction: column; }
.gap-20      { gap: 20px; }
.gap-24      { gap: 24px; }
.mt-20       { margin-top: 20px; }
.mt-32       { margin-top: 32px; }
.mb-20       { margin-bottom: 20px; }
.mb-32       { margin-bottom: 32px; }
/* =============================
      MISCELLANEOUS
============================= */
ol li { list-style-type: decimal; }
ul li { list-style-type: disc; }
ul.resource-links, ul.articles-snippets, ul.benefits-list, .articles-snippets { list-style: disc inside; }
/* Smoother transitions for important interaction targets */
.card, .feature-item, .team-member-card, .testimonial-card, .cta-button, .cookie-btn {
  will-change: transform, box-shadow, background;
}
/* Loader animation (optional, can be used for JS scripts) */
@keyframes spin {
  0% { transform: rotate(0deg); } 
 100% { transform: rotate(360deg); }
}

/* ELEGANT CLASSIC FLARES (subtle line) */
hr, .section-underline {
  border: 0;
  border-top: 1.5px solid #B7C2CE;
  margin: 36px 0 46px 0;
}

/* ===============
      END
================ */