/* =================================================
   CSS RESET & FONT IMPORTS
================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

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, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
u, ins { text-decoration: underline; }
ol, ul {
  list-style: none;
}
a { color: #184A80; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #21A179; text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  box-sizing: border-box;
}

/* =================================================
   BASE LAYOUT & CONTAINERS
================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding-top: 32px;
  padding-bottom: 32px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 rgba(30,30,30,0.07);
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  main {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

/* =================================================
   TYPOGRAPHY: Monochrome sophisticated
================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #101010;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  color: #101010;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  color: #222;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}

p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}
strong, b {
  color: #111;
  font-weight: 700;
}

blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  border-left: 3px solid #222;
  padding-left: 16px;
  margin: 16px 0;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.06rem; }
}

/* =================================================
   HEADER & NAVIGATION
================================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0 0 0 0;
  min-height: 72px;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
header > a:first-child {
  padding-left: 24px;
  height: 64px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1 0 auto;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #101010;
  padding: 13px 12px 11px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #184A80;
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #101010;
  color: #fff;
  padding: 12px 32px;
  border-radius: 32px;
  margin-left: 28px;
  box-shadow: 0 2px 10px 0 rgba(40,40,55,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  border: none;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #101010;
  box-shadow: 0 6px 32px 0 rgba(30,30,60,0.16);
  border: 1px solid #222;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #101010;
  cursor: pointer;
  padding: 8px 20px 8px 8px;
  margin-left: auto;
}

@media (max-width:1100px) {
  .main-nav { gap:14px; }
  .cta-btn { padding:10px 16px; margin-left:8px; font-size:0.98rem; }
  header > a:first-child { padding-left:10px; }
}
@media (max-width:900px) {
  .main-nav { gap: 8px; }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 0;
    min-height: 60px;
    gap: 0;
    position: relative;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    color: #111;
    padding: 10px 20px;
    z-index: 1001;
  }
}

/* =================================================
   MOBILE SIDEBAR MENU ANIMATION & STYLES
================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,10,0.97);
  color: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.55,.02,.43,1.23);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 24px 24px 0 16px;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  z-index: 1202;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #21A179;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
  gap: 12px;
  padding: 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 14px 0;
  font-size: 1.28rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #21A179;
  background: rgba(244,247,251,0.03);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =================================================
   FLEXBOX LAYOUT PATTERNS & SPACING
================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(20,20,32,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 44px 0 rgba(0,0,0,0.17);
  transform: translateY(-2px) scale(1.012);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container { gap: 12px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(30,30,30,0.06);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 540px;
  color: #151515;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =================================================
   HERO SECTIONS, BANNERS & BACKGROUNDS
================================================= */
.hero, .section-hero, .category-hero, .hero-live, .thank-you-section {
  background: #fafbfc;
  border-bottom: 1.5px solid #eee;
  min-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  box-shadow: 0 2px 22px 0 rgba(140,140,160,0.07);
}
.hero .container, .section-hero .container, .category-hero .container, .thank-you-section .container {
  display: flex;
  align-items: center;
}
.live-banner {
  background: #101010;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex; align-items: center;
  gap: 10px;
  margin-top: 16px;
  box-shadow: 0 2px 14px 0 rgba(20,20,34,0.13);
}

@media (max-width: 850px) {
  .hero, .section-hero, .category-hero, .hero-live, .thank-you-section {
    min-height: 120px;
    padding-bottom: 18px;
    margin-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .hero, .section-hero, .category-hero, .hero-live, .thank-you-section {
    box-shadow: none;
    border-bottom: none;
    margin-bottom: 18px;
  }
}

/* ===============  FEATURES, NEWS & SERVICE LISTS  ============== */
.features ul,
.benefits ul,
.services ul,
.about-section ul,
.team-section ul,
.achievements-section ul,
.latest-news .news-grid,
.articles-list .news-overview,
.reports-grid .report-cards,
.live-event-list .events-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.features ul li,
.benefits ul li,
.services ul li,
.team-section ul li,
.achievements-section ul li,
.about-section ul li,
.latest-news .news-grid article,
.articles-list .news-overview article,
.reports-grid .report-card,
.live-event-list .event-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 16px rgba(20,20,30,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 245px;
  flex: 1 1 260px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.features ul li:hover,
.benefits ul li:hover,
.services ul li:hover,
.latest-news .news-grid article:hover,
.articles-list .news-overview article:hover,
.reports-grid .report-card:hover,
.live-event-list .event-card:hover {
  box-shadow: 0 8px 32px rgba(30,30,40,0.10);
  transform: translateY(-5px) scale(1.01);
}
.features ul li img,
.benefits ul li img {
  margin-bottom: 7px;
  width: 28px;
  height: 28px;
  filter: grayscale(1) contrast(1.36);
  opacity: 0.8;
}
.latest-news .news-grid {
  gap: 24px;
}
.newsletter-signup .content-wrapper > *:not(:last-child) {
  margin-bottom: 14px;
}
.newsletter-signup {
  background: #fff;
  border-top: 1.2px solid #ecedee;
  box-shadow: 0 3px 8px 0 rgba(60,60,66,0.07);
  margin-bottom: 38px;
  border-radius: 15px;
}
.newsletter-signup .cta-btn {
  margin-top: 14px; margin-bottom: 10px;
}
.price, .event-date {
  color: #184A80;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .features ul, .services ul, .benefits ul, .team-section ul, .about-section ul, .achievements-section ul, .latest-news .news-grid, .articles-list .news-overview, .reports-grid .report-cards, .live-event-list .events-wrapper {
    gap: 16px;
  }
  .features ul li, .services ul li, .benefits ul li, .team-section ul li, .achievements-section ul li, .about-section ul li, .latest-news .news-grid article,
  .articles-list .news-overview article, .reports-grid .report-card, .live-event-list .event-card {
    min-width: 174px;
    font-size: 0.98rem;
    padding: 16px 10px;
  }
}

/* ============== FILTER OPTIONS & PAGINATION ============= */
.filter-options, .event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.filter-options li, .event-filters li {
  list-style: none;
}
.filter-options a, .event-filters a {
  color: #444;
  background: #F4F7FB;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 1.2px solid #e0e2e7;
  transition: background 0.14s, color 0.13s, border 0.14s;
  cursor: pointer;
  text-decoration: none;
}
.filter-options a:hover, .event-filters a:hover {
  background: #101010;
  color: #fff;
  border: 1.2px solid #101015;
}
.pagination {
  display: flex;
  gap: 12px;
  padding: 18px 0 2px 0;
}
.pagination a {
  color: #184A80;
  background: #F4F7FB;
  border-radius: 9px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: 1.02rem;
  transition: background 0.13s, color 0.13s;
}
.pagination a:hover {
  background: #184A80;
  color: #fff;
}

/* ============= ASIDE & NEWSLETTER PROMO ============ */
.articles-list .container {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
}
.articles-list aside {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 180px;
}
.articles-list .content-wrapper {
  flex: 3 1 720px;
}
.aside-section {
  background: #FAFAFA;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(22,22,30,0.04);
  padding: 20px 16px;
}
.newsletter-cta p {
  font-weight: 600;
  color: #101010;
  margin-top: 5px;
}
@media (max-width: 900px) {
  .articles-list .container {
    flex-direction: column;
    gap: 14px;
  }
  .articles-list aside {
    flex: unset; width: 100%; min-width: auto;
  }
}

/* =============== FOOTER, MENUS & SOCIAL LINKS ============== */
footer {
  background: #101010;
  color: #fff;
  font-size: 1rem;
  padding: 38px 0 16px 0;
  margin-top: 46px;
  box-shadow: 0 -2px 18px 0 rgba(10,10,20,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #F4F7FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus { color: #21A179; }
.contact-info, .social-links {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .contact-info img { width: 18px; height: 18px; opacity: 0.7; }
.social-links a img {
  filter: grayscale(1) contrast(1.32);
  opacity: 0.84;
  transition: filter 0.13s;
  width: 25px;
  height: 25px;
}
.social-links a:hover img { filter: grayscale(0) contrast(1.17); opacity: 1; }
footer p { color: #F4F7FB; font-size: 0.94rem; margin: 0; }
@media (max-width: 768px) {
  footer .container { gap: 16px; }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .contact-info, .social-links { gap: 12px; font-size: 0.92rem; }
}

/* ========== THANK YOU PAGE Social links ========== */
.thank-you-section .social-links {
  margin-top: 24px;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.thank-you-section .social-links span {
  font-size: 1.04rem;
  color: #222;
  margin-right: 8px;
}

/* ================ CARD COMPONENTS / REPORTS =============== */
.report-cards { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 18px; }
.report-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(14,24,34,0.08);
  padding: 24px 16px 30px 16px;
  min-width: 260px;
  flex: 1 1 285px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #eceeef;
}
.report-card .cta-btn {
  align-self: flex-start;
  margin-top: 10px;
}
.report-card:hover { box-shadow:0 8px 34px rgba(23,32,35,0.12); border:1.5px solid #184A80; }

/* ============== TESTIMONIALS & OPINIONS ============== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials .content-wrapper {
  gap: 36px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #181818;
}
.testimonial-card b {
  display: block;
  margin-top: 6px;
  color: #184A80;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =============== ABOUT & TEAM SECTIONS =============== */
.about-section, .team-section, .partners-section, .achievements-section, .business-info, .contact-section, .legal {
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 2px 15px 0 rgba(26,26,38,0.05);
  padding: 40px 15px;
  margin-bottom: 54px;
}
.about-section ul, .team-section ul, .achievements-section ul {
  gap: 14px;
}
.partner-logos {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  padding: 8px 0 16px 0;
}
.legal ul {
  margin-bottom: 22px;
  gap: 12px;
}
.legal ul li {
  margin-left: 18px;
  list-style: disc;
  font-size: 1.01rem;
}
@media (max-width: 992px){
  .about-section, .team-section, .partners-section, .achievements-section, .business-info, .contact-section, .legal {
    padding: 20px 5px;
  }
}

/* =============== CONTACT PAGE / MAPS =============== */
.contact-section .contact-info{
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(26,26,26,0.04);
  padding: 18px 14px;
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4F7FB;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.location-map img { width: 22px; height: 22px; }

/* =========== COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.991);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px 16px 20px;
  z-index: 9999;
  box-shadow: 0 -8px 44px 0 rgba(0,0,0,0.22);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: transform 0.4s cubic-bezier(.77,.24,.45,1.36), opacity 0.3s;
  gap: 22px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(104%);
}
.cookie-banner p { color: #fff; font-size: 1rem; max-width: 650px; }
.cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 32px;
  cursor: pointer;
  margin-top: 3px;
  background: #fff;
  color: #111;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.19s;
}
.cookie-reject {
  background: #101010;
  color: #fff;
  border: 1.1px solid #555;
}
.cookie-settings {
  background: #F4F7FB;
  color: #111;
}
.cookie-accept:hover, .cookie-settings:hover {
  background: #184A80;
  color: #fff;
}
.cookie-reject:hover {
  background: #181818;
  color: #fff; border:1.1px solid #222;
}

/* Cookie Category Modal */
.cookie-modal {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 12000;
  background: rgba(10,10,20,0.82);
  opacity: 1;
  transition: opacity 0.24s;
  pointer-events: all;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 50px rgba(18,28,48,0.23);
  padding: 38px 40px;
  max-width: 410px;
  width: 96%;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-container h2 {
  color: #101010;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 96%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}
.cookie-category input[type="checkbox"] {
  accent-color: #184A80;
  width: 17px; height: 17px;
}
.cookie-category .essential-label {
  color: #21A179;
  font-size: 1rem;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-container .cookie-accept,
.cookie-modal-container .cookie-reject {
  padding: 10px 26px;
}
@media (max-width:600px){
  .cookie-modal-container { max-width: 98vw; padding: 18px 8px; }
  .cookie-banner { padding: 14px 5px 8px 7px; gap:11px; }
}

/* =========== MISC. MICRO-INTERACTIONS ========== */
.transition-all { transition: all 0.19s cubic-bezier(.85,.08,.26,1.12); }

/* Hover effect for cards */
.card:hover, .report-card:hover, .testimonial-card:hover, .features ul li:hover {
  box-shadow: 0 10px 38px rgba(20,20,38,0.13);
  background: #fafbfc;
  cursor: pointer;
}

/* Quotes / opinions highlight effect */
.testimonial-card {
  border-left: 4px solid #184A80;
  transition: border-color 0.23s;
}
.testimonial-card:hover { border-left:4px solid #21A179; }

/* Inputs and buttons */
input, textarea, select {
  background: #f8f8f8;
  border: 1.4px solid #e1e3e9;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  color: #111;
  font-size: 1rem;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.4px solid #184A80;
}

/* General sections spacing enforcement */
section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section:not(:last-child) {
    margin-bottom: 34px;
  }
  .testimonial-list, .report-cards, .features ul, .services ul, .news-grid {
    flex-direction: column;
    gap: 12px !important;
  }
}

/* Typography contrast fixes for monochrome testimonials */
.testimonial-card, .testimonial-card p, .testimonial-card b {
  background: #fff !important;
  color: #111 !important;
  border-color: #dddddf;
}

/* =============== ACCESSIBILITY/SUPPORTIVE =============== */
:focus {
  outline: 2px solid #184A80;
  outline-offset: 2px;
}
[tabindex="0"]:focus {
  outline: 2px solid #21A179;
}

/* Make sure no content is overlapping. */
.card, .report-card, .testimonial-card, .aside-section, .features ul li,
.benefits ul li, .event-card, .newsletter-signup, .about-section, .team-section,
.achievements-section, .partners-section {
  margin-bottom: 20px !important;
}

/* Utility classes for custom flex directions and spacing */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* =========== END OF CSS: Blazing Legend ============ */
