/* ===================================================================== */
/*             CSS RESET & BASELINE NORMALIZE FOR RELIABILITY           */
/* ===================================================================== */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #263143;
  background: #F7FAFC;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #F7FAFC;
  transition: background 0.2s;
}
img { max-width: 100%; display: block; }
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #215187;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2FA14F;
  text-decoration: underline;
  outline: none;
}
:focus {
  outline: 2px solid #2FA14F;
  outline-offset: 2px;
}
button,
input[type="button"],
input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: 16px;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: #263143;
  margin-bottom: 18px;
}
input[type="text"],
input[type="email"] {
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #215187;
}

/* ===================================================================== */
/*                        BRAND VARIABLES AND BASE                       */
/* ===================================================================== */
:root {
  --color-primary: #215187;
  --color-primary-dark: #193D65;
  --color-secondary: #2FA14F;
  --color-accent: #F7FAFC;
  --color-section-bg: #F4F7FB;
  --color-text: #263143;
  --color-muted: #5D6B82;
  --color-light-gray: #E0E7F0;
  --color-white: #fff;
  --color-border: #C9D3E0;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --box-radius: 12px;
  --shadow-xs: 0 1px 3px rgba(33,81,135,0.04);
  --shadow-sm: 0 2px 8px rgba(33,81,135,0.08);
  --shadow-md: 0 6px 24px rgba(33,81,135,0.14);
}

/* ===================================================================== */
/*                          TYPOGRAPHY SCALE                             */
/* ===================================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}
p, ul li, ol li {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 12px;
}
ul, ol {
  margin-bottom: 16px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-primary-dark);
  padding-left: 20px;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-accent);
  margin-bottom: 12px;
}
strong, b {
  font-weight: 600;
  color: var(--color-primary);
}
small {
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* ===================================================================== */
/*                     CONTAINER & STRUCTURE    (FLEX)                   */
/* ===================================================================== */
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: var(--color-section-bg);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  padding: 32px 24px;
  margin-bottom: 20px;
}

/* Enforce .section spacing per rules */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--box-radius);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1 1 290px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  background: var(--color-accent);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--box-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-top: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-meta {
  font-size: 0.97rem;
  color: var(--color-muted);
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific overrides for info lists */
ul.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
ul.feature-list li {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  padding: 18px 16px 16px 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--color-light-gray);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.17s;
}
ul.feature-list img {
  width: 42px;
  display: block;
}
ul.feature-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

ul.service-snippet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
ul.service-snippet-list li {
  background: var(--color-section-bg);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  flex: 1 1 230px;
  min-width: 200px;
  padding: 18px 14px 14px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--color-light-gray);
  display: flex;
  flex-direction: column;
}
ul.service-snippet-list li h3 { margin-bottom: 5px; }

ul.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
ul.service-grid li {
  background: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-light-gray);
  flex: 1 1 280px;
  min-width: 230px;
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.14s;
}
ul.service-grid li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.014);
}
.price-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  background: #EBF7F0;
  padding: 3px 8px;
  border-radius: 6px;
}


/* News List */
ul.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
ul.news-list li {
  background: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  padding: 16px 18px 14px 18px;
  border: 1px solid var(--color-light-gray);
  margin-bottom: 8px;
  transition: box-shadow 0.16s, transform 0.12s;
}
ul.news-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.01);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-grid > div {
  background: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-light-gray);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-grid > div h3 { margin-bottom: 6px; }

.solution-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.solution-cards > div {
  background: var(--color-section-bg);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow-xs);
  flex: 1 1 240px;
  min-width: 200px;
  padding: 20px 17px 15px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/***********************************
        HEADER & NAVIGATION         
***********************************/
header {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(32,61,110,0.03);
  border-bottom: 1px solid var(--color-light-gray);
  position: sticky;
  top: 0;
  z-index: 1001;
  min-height: 64px;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
  min-height: 64px;
  width: 100%;
}
header nav > a img {
  height: 40px;
  width: auto;
  margin-right: 14px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
header nav ul li a {
  color: var(--color-primary-dark);
  padding: 6px 3px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
header nav ul li a:hover, header nav ul li a:focus, header nav ul li.active a {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 30px;
  padding: 11px 34px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(33,81,135,0.07);
  border: none;
  transition: background 0.15s, box-shadow 0.16s, transform 0.13s;
  text-decoration: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px) scale(1.02);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  border: 2px solid var(--color-primary);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 32px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 22px;
  margin-bottom: 4px;
  transition: background 0.16s, box-shadow 0.18s, color 0.13s, border 0.14s;
  text-decoration: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: var(--color-white) !important;
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary-dark);
}

/***********************************
           MOBILE MENU             
***********************************/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 1002;
  transition: background 0.17s, color 0.13s, box-shadow 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus-visible {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,81,135,0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.76,.09,.48,.97);
  z-index: 1500;
  opacity: 0.98;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--color-white);
  background: none;
  border: none;
  margin-top: 28px;
  margin-left: 24px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0 0 0;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.35rem;
  padding: 18px 34px 18px 34px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  background: transparent;
  transition: color 0.16s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  text-decoration: underline;
}

/***********************************
             FOOTER                
***********************************/
footer {
  background: var(--color-section-bg);
  padding: 32px 0 16px 0;
  color: var(--color-muted);
  font-size: 1rem;
  border-top: 1px solid var(--color-light-gray);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
footer nav a {
  color: var(--color-primary);
  background: none;
  padding: 0 2px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: underline;
  transition: background 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
footer p {
  color: var(--color-muted);
  font-size: 0.98rem;
  text-align: center;
}

/***********************************
         FORM ELEMENTS              
***********************************/
form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 16px;
}
form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 9px 13px;
  border-radius: 8px 0 0 8px;
  border-right: none;
  border: 1px solid var(--color-border);
  transition: border 0.14s;
}
form input[type="email"]:focus {
  border-color: var(--color-primary);
}
form button {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 9px 25px;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 0 8px 8px 0;
  border: none;
  font-weight: 600;
  transition: background 0.14s, box-shadow 0.14s;
}
form button:hover, form button:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

/* For resource search */
input[type="text"] {
  width: 80%;
  margin-right: 12px;
}

/***********************************
      COOKIE CONSENT BANNER         
***********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--color-white);
  border-top: 1.5px solid var(--color-light-gray);
  box-shadow: 0 -2px 18px rgba(33,81,135,0.08);
  padding: 18px 22px 18px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.67,.03,.27,1), opacity 0.22s;
}
.cookie-banner.hidden {
  transform: translateY(100%); opacity: 0;
}
.cookie-banner__text {
  color: var(--color-text);
  max-width: 600px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  padding: 8px 26px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-primary-dark);
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 7px 21px;
  font-weight: 500;
  transition: background 0.16s, color 0.11s, border 0.14s;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
}

/***********************************
      COOKIE PREFERENCES MODAL      
***********************************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,61,110,0.48);
  z-index: 2100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: var(--box-radius);
  box-shadow: 0 10px 30px rgba(33,81,135,0.13);
  max-width: 440px;
  width: 92%;
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin 0.34s cubic-bezier(.71,.01,.73,1);
}
@keyframes popin {
  0% { transform: scale(0.91); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2, .cookie-modal h3 {
  font-family: var(--font-display);
}
.cookie-modal__close {
  position: absolute;
  right: 22px;
  top: 12px;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-text);
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  border-radius: 16px;
  background: var(--color-section-bg);
  border: 1px solid var(--color-light-gray);
  position: relative;
  transition: background 0.2s;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: left 0.2s, background 0.17s;
}
.cookie-toggle input:checked + span {
  left: 16px;
  background: var(--color-secondary);
}
.cookie-category.essential .cookie-toggle {
  background: #ECF7EA;
  border-color: #bfe5bd;
}
.cookie-category.essential label {
  color: var(--color-secondary);
  font-weight: bold;
}

/***********************************
         BUTTONS & INTERACTIONS     
***********************************/
button,
input[type="button"],
input[type="submit"] {
  font-family: var(--font-display);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 30px;
  border: none;
  padding: 9px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.16s, box-shadow 0.17s;
}
button:hover, button:focus {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(47,161,79,0.09);
}

/***********************************
       UTILITY & SPACING HELPERS    
***********************************/
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.text-center { text-align: center !important; }

/***********************************
   RESPONSIVE DESIGN (MOBILE FIRST) 
***********************************/
@media (max-width: 1060px) {
  .container { max-width: 98vw;}
}
@media (max-width: 900px) {
  .team-grid, .solution-cards, .service-grid, .card-container, ul.feature-list, .service-snippet-list {
    gap: 16px;
  }
  header nav { padding: 0 2%; }
}
@media (max-width: 768px) {
  section, .section { padding: 30px 8px; }
  .container { width: 98%; padding: 0 2px; }
  .content-wrapper, .card { gap: 12px; }
  .text-section { padding: 22px 8px; }
  .card, .solution-cards > div, .team-grid > div,
  .feature-list li, .service-grid li, .service-snippet-list li {
    min-width: 98%;
    flex: 1 1 100%;
  }
  .card-container, .service-grid, ul.feature-list, .solution-cards, .team-grid, .service-snippet-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  nav ul { gap: 12px !important; }
}
@media (max-width: 650px) {
  h1, .h1 { font-size: 1.8rem; }
  h2, .h2 { font-size: 1.36rem; }
  .testimonial-card, .card, .solution-cards > div, .team-grid > div {
    padding: 14px 7px;
  }
  footer { padding: 21px 0 10px 0; }
  .cookie-banner__actions { flex-direction: column; gap: 9px;}
}
@media (max-width:500px) {
  .cookie-modal { padding: 22px 5px; }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.97rem;
    padding: 12px 4px 14px 4px;
  }
}

/***********************************
      MOBILE NAVIGATION ACTIVATION  
***********************************/
@media (max-width: 900px) {
  header nav ul, header nav .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/***********************************
      SUBTLE ANIMATIONS & EFFECTS   
***********************************/
.card, .solution-cards > div, .team-grid > div, .testimonial-card, .service-grid li, ul.feature-list li, .news-list li {
  transition: box-shadow 0.19s cubic-bezier(.63,.01,.63,1), transform 0.17s cubic-bezier(.69,.14,.63,.91);
}
.cta-primary, .cta-secondary, button, .cookie-btn {
  transition: background 0.19s cubic-bezier(.65,.06,.49,.97), color 0.16s, box-shadow 0.17s, border 0.14s;
}

/***********************************
   OTHER ELEMENTS & SECTION STYLES  
***********************************/
.diagram {
  background: var(--color-section-bg);
  border-radius: 9px;
  padding: 16px 12px;
  margin: 12px 0 8px 0;
  border: 1px solid var(--color-light-gray);
  font-size: 1.04rem;
}
.diagram strong {
  color: var(--color-primary-dark);
}

/***********************************/
/*     SPECIAL CASES/OVERRIDES     */
/***********************************/
ul li {
  margin-bottom: 8px;
  padding-left: 0;
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 10px;
}
.text-section a {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.14s;
}
.text-section a:hover, .text-section a:focus { color: var(--color-primary); }

/***********************************/
/*           PRINT STYLES          */
/***********************************/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important;}
  body { background: #fff; color: #000; }
}
