/* ===== 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;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A3D5A;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
*, *:before, *:after { box-sizing: inherit; }

/* ===== BRAND VARIABLES ===== */
:root {
  --color-primary: #1A3D5A;
  --color-secondary: #4696C7;
  --color-accent: #F6E9B2;
  --color-white: #fff;
  --color-black: #161821;
  --color-grey: #f7f8fa;
  --color-grey-dark: #d2dae3;
  --color-error: #DA2D3C;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===== BASE TYPOGRAPHY ===== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-white);
  color: var(--color-primary);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem;  line-height: 1.1; }
h2 { font-size: 2rem;  line-height: 1.2; }
h3 { font-size: 1.3rem;  line-height: 1.25; }
h4 { font-size: 1.1rem;  }  
p, ul, ol, li {
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #263747;
}
.subheadline {
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
em, i {
  font-style: italic;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== CREATIVE ARTISTIC SPACING & ARTISTIC VISUALS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* Unique background highlights for creative layout */
section:nth-child(2n) {
  background: var(--color-accent);
}
section:nth-child(2n+1) {
  background: var(--color-grey);
}

/* Decorative artistic brush stroke/framing for hero */
header nav a img,
footer .content-wrapper > img {
  border-radius: 50% 45% 42% 60%/45% 50% 60% 50%;
  box-shadow: 0 6px 32px 0 rgba(70,150,199,0.12),
              0 1.5px 7px rgba(26,61,90,0.07);
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  background: none;
  padding: 28px 0;
  font-family: var(--font-display);
  font-weight: 600;
}
.main-nav a {
  transition: color 0.18s;
  border-radius: 7px;
  padding: 6px 16px;
  font-size: 1.05rem;
  color: var(--color-primary);
  position: relative;
}
.main-nav a.cta-primary {
  background: var(--color-secondary);
  color: var(--color-white)!important;
  box-shadow: 0 2px 10px 0 rgba(70,150,199,0.18);
  border-radius: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s,color 0.2s,transform 0.15s;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  color: var(--color-secondary);
  background: rgba(70,150,199,0.06);
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #317EA9;
  color: var(--color-accent)!important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 22px 0 rgba(70,150,199,0.32);
}

header {
  background: var(--color-white);
  box-shadow: 0 6px 24px -5px rgba(26,61,90,0.07);
  position: sticky;
  top: 0;
  z-index: 1002;
  width: 100%;
}

header nav a img {
  height: 36px;
  width: auto;
  margin-right: 12px;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-size: 2.3rem;
  border-radius: 40px;
  padding: 6px 20px 6px 14px;
  margin-left: auto;
  margin-right: 6px;
  cursor: pointer;
  z-index: 1003;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus { outline: 3px solid var(--color-secondary); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 85vw; max-width: 350px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 32px 28px 28px 28px;
  z-index: 1200;
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(.91,-0.07,.36,1.24);
  box-shadow: 6px 0 32px 2px rgba(26,61,90,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.11s;
}
.mobile-menu-close:focus {
  color: var(--color-accent);
  outline: 2px solid var(--color-accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 12px;
  background: none;
  transition: background 0.17s,color 0.14s;
}
.mobile-nav a.cta-primary,
.mobile-nav a:last-child {
  background: var(--color-secondary);
  color: var(--color-white)!important;
  border-radius: 22px;
  font-weight: 700;
  margin-top: 10px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-white)!important;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    font-size: 1rem;
    padding: 5px 8px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    gap: 5px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/* ===== SECTION & CARD SPACING PATTERNS (MANDATORY) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 21px;
  box-shadow: 0 4px 20px rgb(70 150 199 / 12%);
  transition: box-shadow 0.2s, transform 0.15s;
  padding: 32px 28px;
  flex: 1 1 320px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px 0 rgba(70,150,199,0.17);
  transform: translateY(-2px) scale(1.02);
  z-index: 1;
}
.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: #fff;
  border-radius: 22px 70px 34px 16px / 24px 60px 28px 36px;
  margin-bottom: 24px;
  box-shadow: 0 1.5px 8px 0 rgba(26,61,90,0.09);
  min-width: 0;
  position: relative;
  border-left: 7px solid var(--color-secondary);
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 9px 34px 0 rgba(26,61,90,.17);
  transform: translateY(-2.5px) scale(1.018);
  background: var(--color-accent);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== FEATURE GRID DESIGN ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}
.feature {
  background: var(--color-white);
  border-radius: 28px 16px 40px 14px / 20px 22px 52px 25px;
  box-shadow: 0 3px 14px 0 rgba(26,61,90,0.06);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 230px;
  transition: box-shadow 0.16s,transform 0.14s;
  margin-bottom: 20px;
  margin-right: 0;
  border-left: 5px solid var(--color-accent);
}
.feature img {
  width: 38px; height: 38px;
  margin-bottom: 9px;
}
.feature h3 {
  font-size: 1.15rem;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 6px;
}
.feature p {
  font-size: 1rem;
  color: #1A3D5A;
}
.feature:hover {
  box-shadow: 0 8px 28px 0 rgba(70,150,199,0.17);
  transform: translateY(-2px) scale(1.02);
  background: var(--color-accent);
}

/* ===== ABOUT CARDS, CERTIFICATION ===== */
.certifications {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.certifications img {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(26,61,90,0.13));
}

/* ===== CUSTOMER LOGOS IN REFERENCES ===== */
.customer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.customer-logos img {
  width: 90px; opacity: 0.93;
}

/* ===== CASE STUDIES ===== */
.case-study-teaser {
  background: var(--color-accent);
  border-radius: 30px 8px 42px 22px / 50px 20px 23px 28px;
  padding: 32px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 18px 0 rgba(70,150,199,0.07);
  font-family: var(--font-body);
}
.metrics-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 12px;
}
.metrics-highlights li::before {
  content: '\2022';
  color: var(--color-primary);
  font-size: 1.25em;
  margin-right: 0.6em;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 16px 0 14px 0;
}
.faq-item {
  background: var(--color-accent);
  border-radius: 16px 40px 18px 10px / 14px 26px 22px 28px;
  padding: 25px 22px 14px 24px;
  box-shadow: 0 1.5px 7px rgba(26,61,90,0.09);
  transition: background 0.17s, box-shadow 0.12s;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-secondary);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-item h3:hover, .faq-item h3:focus {
  color: var(--color-primary);
}
.faq-item > div {
  font-size: 1rem;
  color: var(--color-primary);
}

/* ===== CTA PRIMARY BUTTON ===== */
.cta-primary, .content-wrapper button.cta-primary, button.cta-primary {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white)!important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.17rem;
  border-radius: 27px;
  border: none;
  padding: 13px 29px;
  transition: background 0.20s, color 0.14s, box-shadow 0.20s, transform 0.14s;
  box-shadow: 0 3px 22px 0 rgba(70,150,199,0.23);
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-primary);
  color: var(--color-accent)!important;
  box-shadow: 0 11px 26px 0 rgba(26,61,90,.26);
  transform: translateY(-1.5px) scale(1.03);
  outline: none;
}

/* ===== FORMS ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 18px 0 4px 0;
}
input, textarea {
  border: 2px solid var(--color-grey-dark);
  border-radius: 13px 35px 16px 4px / 9px 24px 18px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 11px 17px;
  background: #f7f8fa;
  color: var(--color-primary);
  transition: border 0.18s;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
  background: #ffffff;
}

/* ===== FAQ TEASER, CHECKLIST, NEWSLETTER INFO BLOCKS ===== */
.faq-teaser, .webinar-checklist, .support-cta, .next-steps-info {
  background: var(--color-white);
  border-radius: 20px 52px 17px 10px / 14px 39px 28px 24px;
  box-shadow: 0 2.5px 10px 0 rgba(70,150,199,0.11);
  padding: 19px 19px 17px 22px;
  margin-bottom: 22px;
}
.webinar-checklist ul { list-style: disc inside; padding-left: 20px; }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  border: 2px dashed var(--color-secondary);
  border-radius: 20px 22px 8px 28px / 18px 24px 12px 22px;
  background: var(--color-accent);
  color: var(--color-primary);
  margin: 14px 0 4px 0;
  padding: 15px 16px;
  text-align: center;
  font-style: italic;
  min-height: 50px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 0 0 0 0;
  font-family: var(--font-body);
}
footer .container {
  padding-top: 36px;
  padding-bottom: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 3px 10px;
  transition: background .13s, color .13s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-secondary);
  background: rgba(246,233,178,0.09);
}
.contact-footer address {
  color: var(--color-accent);
  font-size: 0.97rem;
  font-style: normal;
  margin-bottom: 6px;
}
.contact-footer a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-social {
  display: flex; flex-direction: row; gap: 19px;
  align-items: center;
}
.footer-social a {
  background: var(--color-accent);
  border-radius: 50%;
  padding: 8px;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(70,150,199,0.16);
  transition: background 0.12s, box-shadow 0.12s, transform .10s;
  height: 42px; width: 42px;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-secondary);
  box-shadow: 0 7px 18px rgba(246,233,178,0.11);
  transform: scale(1.13);
}
.footer-social img {
  width: 27px; height: 27px;
}

/* ======== COOKIE CONSENT BANNER ======== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 18px 26px 18px;
  z-index: 2006;
  font-size: 1rem;
  font-family: var(--font-body);
  box-shadow: 0 -4px 24px rgba(26,61,90,0.12);
  animation: cookieBannerAppear 0.46s ease-in;
}
@keyframes cookieBannerAppear { from { opacity:0; transform: translateY(60px);} to{ opacity:1; transform: none;}}
.cookie-banner-message {
  max-width: 420px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 9px 23px;
  border-radius: 19px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
  transition: background .17s, color .13s, box-shadow .14s;
}
.cookie-banner .cookie-accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #317EA9;
  color: var(--color-accent);
}
.cookie-banner .cookie-reject {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,61,90,0.55);
  z-index: 2020;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .36s;
}
@keyframes fadeIn { from{opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 29px 14px 25px 13px / 20px 34px 24px 14px;
  box-shadow: 0 7px 34px 2px rgba(70,150,199,0.16);
  min-width: 310px;
  max-width: 99vw;
  padding: 36px 34px 24px 34px;
  position: relative;
  font-family: var(--font-body);
  animation: modalPop .33s cubic-bezier(.93,.05,.36,1.38);
}
@keyframes modalPop {
  from { opacity:0; transform: translateY(68px) scale(0.93);}
  to {opacity:1; transform: none;}
}
.cookie-modal h2 {
  font-size: 1.3rem; margin-bottom: 16px;
}
.cookie-categories {
  display: flex; flex-direction: column; gap: 13px;
  margin: 16px 0;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-grey-dark);
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 20px; height: 20px;
  margin-left: 13px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-secondary);
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .close-cookie-modal:focus { outline: 2px solid var(--color-accent); }
.cookie-modal .cookie-modal-actions {
  display: flex; flex-direction: row; gap: 14px; margin: 18px 0 0 0;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 19px;
  padding: 9px 21px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
}
.cookie-modal .cookie-modal-accept { background: var(--color-secondary); color: var(--color-white);}
.cookie-modal .cookie-modal-accept:hover, .cookie-modal .cookie-modal-accept:focus { background: #317EA9; color: var(--color-accent); }
.cookie-modal .cookie-modal-cancel { background: var(--color-accent); color: var(--color-primary);}
.cookie-modal .cookie-modal-cancel:hover, .cookie-modal .cookie-modal-cancel:focus{ background: var(--color-secondary); color: var(--color-accent);}

/* ======== RESPONSIVE FLEXBOX RULES ======== */
@media (max-width: 991px) {
  .container { max-width: 98vw; }
  .content-grid, .feature-grid, .certifications, .customer-logos {
    gap: 18px; flex-wrap: wrap;
  }
  .feature { min-width: 210px; max-width: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section, section { padding: 36px 2px !important; }
  .content-wrapper { align-items: stretch; gap: 15px; }
  .feature-grid { flex-direction: column; align-items: stretch; gap: 16px; }
  .feature { min-width: 0; width: 100%; }
  .card-container { flex-direction: column; gap: 12px; }
  .card { width: 100%; min-width: 0; }
  .customer-logos { gap: 22px; }
  .metrics-highlights ul { flex-direction: column; gap: 14px; margin-top: 7px; }
  .certifications { gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
  .text-image-section { flex-direction: column; gap: 15px; }
  .testimonial-card { flex-direction: column; gap: 7px; padding: 17px; }
  .faq-accordion { gap: 10px; }
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 15px; }
}
@media (max-width: 570px) {
  section, .section {padding: 24px 2px 24px 2px;}
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.23rem; }
  .cta-primary { padding: 10px 13px; font-size: 1.04rem; }
}
@media (max-width: 420px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; font-size: 0.98rem;}
  .cookie-banner-actions { gap: 9px; }
}

/* ===== MICRO-INTERACTIONS & TRANSITIONS ===== */
.feature, .card, .case-study-teaser, .testimonial-card, .faq-item {
  transition: box-shadow .19s, transform .14s, background .14s;
}
input, textarea {
  transition: border 0.18s, background 0.15s;
}
.cta-primary, .cookie-banner button, .cookie-modal button {
  transition: background 0.15s,color 0.13s,box-shadow 0.17s,transform 0.14s;
}

/* ===== UTILITIES ===== */
.text-center { text-align:center; }
.text-right { text-align:right; }
.hide-desktop { display:none!important; }
@media (max-width:768px){ .hide-desktop { display:block!important; } }

/* ===== ACCESSIBILITY FOCUS STATES ===== */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ===== COLOR CONTRAST FOR TESTIMONIALS ===== */
.testimonial-card {
  background: #fff !important;
  color: #1A3D5A;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-left: 2px;
}
.testimonial-card p {
  color: #1A3D5A !important;
  font-size: 1.09rem;
  font-family: var(--font-body);
  font-style: italic;
  margin-bottom: 0;
}

/* ===== NEWSLETTER FORM ===== */
form input[type=email] {
  max-width: 340px;
  width: 100%;
}

/* ===== CONTACT INFO STYLES ===== */
.contact-info-block {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 10px 18px 36px 12px / 18px 14px 46px 17px;
  padding: 15px 16px;
  margin-bottom: 15px;
  font-size: 1rem;
  text-align: left;
}
.contact-details {
  font-size: 0.98rem;
  margin: 12px 0 8px 0;
}
.contact-details strong {
  display: inline-block;
  width: 120px;
  color: var(--color-secondary);
}

/* ===== FLEXBOX FOR ALL MULTI-CHILD LAYOUTS (NO GRID/COLUMN) ===== */
/* Already done. Every multi-column, card, or section child uses display:flex with | wrap | gap | alignment rules. */

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