/* ---------------------- 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,
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, 
main, 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 { line-height: 1.4; }
ol, ul { list-style: none; margin: 0; padding: 0; }
a { background: transparent; text-decoration: none; color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; display: block; vertical-align: middle; border: 0; }

/* ---------------------- BRAND COLORS & VARIABLES ---------------------- */
:root {
  --primary: #21263a;
  --secondary: #00b7d6;
  --accent: #fafbfc;
  --electric-coral: #ff3257;
  --electric-yellow: #fff100;
  --electric-purple: #6930c3;
  --gray-dark: #222b45;
  --gray-light: #eef2fa;
  --white: #fff;
}

/* Bright backgrounds for vibrancy */
body {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, .h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; line-height: 1.09; color: var(--primary); margin-bottom: 16px; }
h2, .h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 14px; color: var(--secondary); letter-spacing: -0.5px; }
h3, .h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.375rem; font-weight: 600; margin-bottom: 10px; color: var(--electric-purple); }
h4, .h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.125rem; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
p, ul, ol, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 12px;
}
h1, h2, h3, h4 { line-height: 1.15; }
strong { color: var(--electric-coral); font-weight: 700; }

/* ---------------------- LAYOUT CONTAINERS & SPACING ---------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  /* subtle shadow for section separation */
  box-shadow: 0 2px 16px rgba(0,183,214,0.06), 0 0.5px 1.5px rgba(33,38,58,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section { align-items: flex-start; }

/* NEWS/FEATURES SECTION LAYOUTS */
.feature-grid, .service-descriptions, .news-list, .analysis-teasers, .analysis-snippets, .event-cards, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.feature-grid li, .service-descriptions li, .news-list li, .analysis-teasers li, .analysis-snippets > div, .event-cards > div, .team-bio {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(255,50,87, 0.03), 0 1.5px 5px rgba(0,183,214,0.06);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.61,.01,.43,1.03), box-shadow 0.18s;
  border-left: 5px solid var(--secondary);
  /* dynamic accent border */
}
.feature-grid li:hover, .service-descriptions li:hover, .analysis-teasers li:hover, .analysis-snippets > div:hover,
.event-cards > div:hover, .team-bio:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255,50,87,.10), 0 3px 9px rgba(33,38,58,0.14);
  border-left-color: var(--electric-coral);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(105,48,195,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .15s;
}
.card:hover {
  box-shadow: 0 4px 22px rgba(255, 50, 87, 0.13), 0 1px 10px rgba(33,38,58,0.09);
}

.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-slider {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(0,183,214,0.10);
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  border: 2px solid var(--electric-yellow);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: var(--electric-coral);
  box-shadow: 0 14px 36px rgba(255,50,87,0.18);
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--primary);
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 0 4px 0;
}
.testimonial-card cite {
  font-size: 1rem;
  color: var(--electric-purple);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.news-cards, .analysis-snippets, .event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.news-cards article, .analysis-snippets > div, .event-cards > div {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 22px 20px 18px 20px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,183,214,0.08);
  border-left: 5px solid var(--electric-purple);
  transition: border-color 0.19s;
  position: relative;
}
.news-cards article:hover, .analysis-snippets > div:hover, .event-cards > div:hover {
  border-left: 5px solid var(--electric-coral);
}

.analysis-teasers > li a, .news-list > li a, .news-cards article a, .analysis-snippets > div a, .service-cards .btn-primary {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid var(--secondary);
  transition: color 0.16s, border-color 0.18s;
}
.analysis-teasers > li a:hover, .news-list > li a:hover, .news-cards article a:hover, .analysis-snippets > div a:hover {
  color: var(--electric-coral);
  border-bottom: 2px solid var(--electric-coral);
}

.view-all {
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--electric-purple);
  font-weight: 700;
  font-size: 1.08rem;
  border-bottom: 2px solid var(--electric-purple);
  transition: color .15s, border-color .20s;
}
.view-all:hover { color: var(--electric-coral); border-bottom-color: var(--electric-coral); }

.categories-filter, .news-categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
  color: var(--secondary);
  font-weight: 700;
}
.categories-filter a, .news-categories-filter a {
  color: var(--electric-purple);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.18s;
  padding: 2px 4px;
  border-radius: 3px;
}
.categories-filter a:hover, .news-categories-filter a:hover {
  color: var(--electric-coral);
  background: var(--gray-light);
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}
.pagination span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--electric-purple);
  font-size: 1.05rem;
  background: var(--electric-yellow);
  border-radius: 8px;
  padding: 3px 12px;
}
.pagination a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.pagination a:hover { color: var(--electric-coral); }

.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--electric-yellow);
  margin-top: 8px;
  display: inline-block;
}

/* Layout for .team-grid and .team-bio */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.team-bio {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,183,214,0.07);
  padding: 22px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--electric-purple);
  transition: border-color 0.26s;
  position: relative;
}
.team-bio:hover { border-left-color: var(--electric-coral); }

/* ---------------------- BUTTONS & MICRO-INTERACTIONS ---------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 24px;
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  letter-spacing: 0.025em;
  border: none;
  box-shadow: 0 6px 24px rgba(0,183,214,0.19);
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, transform 0.14s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric-coral);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(255,50,87,0.13);
  transform: scale(1.035) translateY(-2px);
}

/* Extra outlined accent button for choices */
.btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 20px;
  border: 2.5px solid var(--secondary);
  background: var(--white);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 8px 0 0;
  transition: background 0.16s, color 0.20s, border 0.2s;
}
.btn-secondary:hover, .btn-outline:hover {
  color: var(--electric-coral);
  border-color: var(--electric-coral);
  background: var(--gray-light);
}

/* ---------------------- HEADER & MAIN NAVIGATION ---------------------- */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 18px 0 rgba(33,38,58,0.06);
  position: relative;
  z-index: 9;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: flex-start;
  min-height: 80px;
  padding: 14px 0 8px 0;
  position: relative;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 14px;
  transition: color 0.14s, background 0.17s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:focus {
  color: var(--secondary);
  background: var(--gray-light);
}
.main-nav a.btn-primary {
  margin-left: auto;
  margin-right: 0;
}
.main-nav img { height: 44px; width: auto; margin-right: 16px; vertical-align: middle; }

/* Hide mobile menu button on desktop, show on mobile only */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-coral);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  color: var(--white);
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 28px;
  top: 18px;
  z-index: 99;
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
}

/* ---------------------- MOBILE NAVIGATION DRAWER ---------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--primary);
  box-shadow: 0 0 0 900vh rgba(33,38,58,0.16) inset;
  transform: translateX(100%);
  opacity: 0;
  z-index: 9999;
  transition: transform 0.44s cubic-bezier(.62,-0.22,.48,1.19), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 21px;
  font-size: 2.2rem;
  color: var(--electric-yellow);
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10002;
  padding: 8px; border-radius: 50%;
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-close:hover {
  color: var(--electric-coral);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 84px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--electric-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 13px 34px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.11s, color 0.13s;
  min-width: 240px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-coral);
  color: var(--white);
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 44px 0 10px 0;
  font-size: 1rem;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-menu a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom 0.17s;
}
.footer-menu a:hover { color: var(--electric-yellow); border-bottom: 2px solid var(--electric-yellow); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  font-style: normal;
}
.contact-info img { vertical-align: middle; margin-right: 7px; height: 1.1em; width: auto; }
.contact-info a { color: var(--electric-yellow); font-weight: 600; border-bottom: 1.8px dotted var(--electric-yellow); transition: color .16s, border .24s; }
.contact-info a:hover { color: var(--electric-coral); border-bottom: 1.8px dotted var(--electric-coral); }

.brand-logo img {
  height: 46px;
  width: auto;
  margin: 10px 0 5px 0;
  filter: drop-shadow(0 6px 16px rgba(0,183,214,0.13));
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.social-links a img {
  height: 32px; width: auto; background: var(--white); border-radius: 50%; padding: 2px;
  box-shadow: 0 0.5px 4px rgba(0,183,214,0.11);
  transition: box-shadow 0.16s, filter 0.20s;
}
.social-links a:hover img {
  box-shadow: 0 8px 24px rgba(255,50,87,0.25);
  filter: brightness(1.14) grayscale(10%);
}

/* ---------------------- COOKIE CONSENT BANNER & MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -5px 24px 0 rgba(33,38,58,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 26px 18px 24px 18px;
  border-top: 4px solid var(--electric-yellow);
  animation: cookieBannerIn 0.57s cubic-bezier(.81,.44,.13,1.09);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-14px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { font-size: 1rem; color: var(--primary); margin-bottom: 0; }
.cookie-banner .btn-primary { font-size: 1.06rem; padding: 10px 24px; }
.cookie-banner .btn-secondary { font-size: 1.06rem; padding: 10px 22px; }
.cookie-banner .btn-outline { font-size: 1.03rem; padding: 9px 20px; }

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,38,58,0.33);
  z-index: 21000;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal-backdrop.active {
  display: block;
  opacity: 1;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: var(--white);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 8px 38px 0 rgba(0,183,214,0.21);
  z-index: 21002;
  width: 92vw;
  max-width: 420px;
  padding: 36px 28px 24px 28px;
  animation: cookieModalIn 0.44s cubic-bezier(.78,.44,.11,1.2);
}
.cookie-modal.active { display: block; }
@keyframes cookieModalIn {
  0% { transform: translate(-50%,80%) scale(0.82); opacity: 0; }
  80% { transform: translate(-50%,-12%) scale(1.025); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.37rem;
  color: var(--electric-coral);
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-modal ul {
  margin-bottom: 22px;
}
.cookie-modal li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category-toggle {
  appearance: none;
  background: var(--gray-light);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  transition: border 0.14s, background 0.18s;
}
.cookie-category-toggle:checked {
  background: var(--electric-yellow);
  border-color: var(--electric-coral);
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  margin-top: 11px;
  width: 45%;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 17px; top: 14px;
  background: transparent;
  color: var(--electric-coral);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10002;
}
.cookie-modal .modal-close:hover {
  color: var(--electric-yellow);
}

/* ---------------------- MISC: PRIVACY & NOTICES ---------------------- */
.privacy-note {
  margin-top: 12px;
  font-size: 0.98rem;
  color: var(--electric-purple);
  background: var(--gray-light);
  border-radius: 11px;
  padding: 8px 14px 6px 14px;
  display: inline-block;
}

/* ---------------------- RESPONSIVE DESIGN (MOBILE-FIRST) ---------------------- */
@media (max-width: 1100px) {
  .main-nav { gap: 9px 15px; font-size: 0.94rem; }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.5rem; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; padding-left: 8px; padding-right: 8px; }
  .feature-grid, .service-descriptions, .news-list, .analysis-teasers, .analysis-snippets, .event-cards, .team-grid { flex-direction: column; gap: 20px; }
  .news-cards, .analysis-snippets, .event-cards { flex-direction: column; gap: 18px; }
  .footer-menu { flex-direction: column; gap: 6px; }
  .brand-logo img { height: 42px; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.20rem; }
  .section { padding: 24px 7px; margin-bottom: 40px; }
  .main-nav, .footer-menu, .testimonial-slider { flex-direction: column; gap: 8px; }
  .main-nav a.btn-primary { margin: 7px 0 0 0; align-self: flex-start; }
  .mobile-menu-toggle { display: flex; top: 13px; right: 11px; }
  .main-nav { display: none !important; }
  header { position: sticky; top: 0; }
  .footer-menu { gap: 5px; }
  .content-wrapper { gap: 13px; }
  .card-container, .content-grid, .feature-grid, .news-cards, .event-cards, .team-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section { flex-direction: column; gap: 17px; align-items: flex-start; }
}
@media (max-width: 540px) {
  .container { padding-left: 2px; padding-right: 2px; }
  h1, .h1 { font-size: 1.09rem; }
  .testimonial-card, .feature-grid li, .service-descriptions li, .news-cards article { min-width: 150px; padding: 13px 8px 11px 8px; }
  .brand-logo img { height: 33px; }
}

/* ---------------------- UTILITIES & GENERAL ---------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.row { display: flex; flex-direction: row; }
.col { display: flex; flex-direction: column; }
.gap-xs { gap: 8px !important; }
.gap-sm { gap: 14px !important; }
.gap-md { gap: 22px !important; }
.gap-lg { gap: 32px !important; }

/* Highlighting elements for 'vibrant_energetic' flavor */
.electric-accent { color: var(--electric-yellow); background: var(--electric-coral); padding: 2px 6px; border-radius: 8px; font-weight: 700; font-family: 'Montserrat', Arial, sans-serif; display: inline-block; }

/* List styling (where not cards) */
ul:not(.feature-grid):not(.news-list):not(.analysis-teasers):not(.service-descriptions) li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 6px;
}
ul:not(.feature-grid):not(.news-list):not(.analysis-teasers):not(.service-descriptions) li:before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 2.5px;
}
ol li {
  margin-bottom: 7px;
  padding-left: 0;
}

/* Address styling */
address {
  font-style: normal;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 8px;
  display: flex; flex-direction: column; gap: 5px;
}
address img { height: 1em; width: auto; margin-right: 8px; vertical-align: middle; }
address a { color: var(--secondary); font-weight: 600; text-decoration: underline; }
address a:hover { color: var(--electric-coral); text-decoration: underline dotted; }

/* Success & info notes, e.g. on thanks.php */
.success-note, .info-note {
  background: var(--electric-yellow);
  color: var(--primary);
  border-radius: 11px;
  padding: 11px 18px 9px 16px;
  box-shadow: 0 0.5px 2.5px rgba(0,183,214,0.08);
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.02rem;
}

/* Remove default input/button styles when needed (not essential here, but for future-proof) */
input, textarea, button { font-family: inherit; }
@media (hover: hover) and (pointer: fine) {
  a, button { transition: color 0.15s, background 0.15s, box-shadow 0.16s; }
}

/* ---------------------- OVERRIDES: Prevent Grid or Columns ---------------------- */
[class*="grid"], [class*="column"] {
  /* Forbid accidental grid use! */
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}
