/* --- 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,font,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 { height: 100%; }
body { min-height: 100vh; line-height:1.5; background: #F5F7FA; color: #20315A; }
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block; }
ol,ul { list-style:none; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; border:0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- FONTS (Vintage & Retro Inspired) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700&display=swap');
html {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .cta-btn, .main-nav, .footer-nav, .mobile-nav {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; color: #20315A; }
h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: #F2B705; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: #20315A; }
p, ul, li, blockquote, cite, address, small {
  font-size: 1rem;
  color: #20315A;
  line-height: 1.7;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #53341F;
  background: #FFF9EE;
  border-left: 6px solid #F2B705;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: 10px 2px 12px 2px;
}
cite {
  font-size: 0.98rem; font-style: normal; color: #20315A; opacity:0.88;
}
small { font-size: .92rem; color:#425C84; }

/* --- COLOR PALETTE (Retro) --- */
:root {
  --primary: #20315A;     /* Deep Blue (brand primary) */
  --secondary: #F2B705;   /* Gold/Yellow (brand secondary) */
  --accent: #F5F7FA;      /* Soft Off-White */
  --retro-orange: #E27C2B;/* Retro Accent */
  --retro-rose: #C65B7C;  /* Pink/Sienna */
  --retro-teal: #188985;
  --retro-brown: #53341F;
  --retro-green: #A2C3A4;
  --dark: #191919;
  --white: #FFF;
}

/* --- BODY AND CONTAINER --- */
body {
  background: var(--accent);
  color: var(--primary);
  font-size: 1rem;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- LAYOUT SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(32,49,90,0.09);
  padding: 36px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper:last-child { margin-bottom:0; }
.text-section { background: #FFF9EE; }

/* --- HEADER STYLING --- */
header {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  padding: 0 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 18px 0 rgba(32,49,90,0.10);
  z-index: 999;
}
header > a img {
  height: 45px;
  margin: 16px 28px 16px 24px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-grow: 1;
}
.main-nav a {
  color: var(--accent);
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
  padding: 9px 0;
  transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  background: var(--secondary);
  color: #1E2328;
  border: none;
  border-radius: 20px 4px 18px 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size:1.07rem;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  padding: 13px 34px;
  margin: 16px 24px 16px 0;
  box-shadow: 0px 4px 16px rgba(226,124,43,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--retro-orange);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(226,124,43,0.14);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  margin-right: 24px;
  cursor: pointer;
  display: none;
  z-index: 1020;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus { color: var(--retro-teal); }

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--primary);
  box-shadow: -4px 0 28px 2px rgba(32,49,90,0.10);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.61,0,0.42,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  margin: 18px 22px 6px 0;
  cursor: pointer;
  z-index: 2001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 0;
  transition: color 0.22s;
}
.mobile-nav a:focus, .mobile-nav a:hover { color:var(--secondary); }

/* NAV/HAMBURGER: Responsive showing */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none; }
  .mobile-menu-toggle { display: none; }
}

/* --- HERO SECTIONS --- */
.hero {
  background: repeating-linear-gradient(
    135deg, #F2B705, #F2B705 30px, #FFF9EE 30px, #FFF9EE 60px
  );
  padding: 52px 0 60px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  padding: 52px 30px 44px 30px;
  box-shadow: 0 8px 40px 0 rgba(242,183,5,0.10);
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin-bottom: 0;
}
.hero h1 {
  color: var(--retro-rose);
  font-size: 2.45rem;
  margin-bottom: 18px;
}
.hero p {
  color: var(--dark);
  margin-bottom: 26px;
  font-size: 1.18rem;
}

/* --- FLEXBOX CONTAINER CLASSES/MANDATORY PATTERNS --- */
.features-grid,
.insights-preview-grid,
.solutions-cards,
.team-bios,
.case-studies,
.research-papers-list,
.service-categories-grid,
.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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: #FFF9EE;
  border-radius: 16px 4px;
  box-shadow: 0 4px 16px 0 rgba(226,124,43,0.09);
  margin-bottom: 20px;
  border: 2px solid var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* --- CARD STYLING --- */
.features-grid > div,
.insights-preview-grid > div,
.solutions-cards > div, .team-bios > div,
.research-papers-list > div,
.service-categories-grid > div,
.case-studies > div, .events-list > div {
  flex: 1 1 235px;
  min-width: 250px;
  background: #FFFDF8;
  border-radius: 16px 2px 20px 2px;
  padding: 28px 20px 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(32,49,90,0.06);
  border: 1px solid #F2B70511;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.features-grid > div:hover,
.insights-preview-grid > div:hover,
.solutions-cards > div:hover,
.team-bios > div:hover,
.research-papers-list > div:hover,
.service-categories-grid > div:hover,
.case-studies > div:hover,
.events-list > div:hover {
  box-shadow: 0 6px 24px 0 rgba(32,49,90,0.18);
  transform: translateY(-4px) scale(1.035);
  z-index: 1;
}
.features-grid img,
.service-categories-grid img,
.solutions-cards img,
.team-bios img,
.case-studies img,
.events-list img {
  height: 54px; margin-bottom: 16px; width:auto;
}

/* --- INSIGHTS & RESEARCH EXTRAS --- */
.insights-list-grid,
.research-papers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.insights-list-grid > div,
.research-papers-list > div {
  flex: 1 1 290px;
  background: #FFFAF1;
  border: 1px solid #E0C07A33;
  border-radius: 14px 2px 18px 2px;
  padding: 22px 18px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(242,183,5,0.07);
  transition: box-shadow 0.15s, transform 0.15s;
}
.insights-list-grid > div:hover,
.research-papers-list > div:hover {
  box-shadow: 0 6px 14px rgba(226,124,43,0.10);
  transform: scale(1.022);
}
.interactive-filters strong,
.filters strong {
  color: var(--retro-rose);
  font-size: 1.03rem; margin-right: 8px;
}
.filters span, .interactive-filters span {
  color: #188985; font-size: 0.97rem; letter-spacing: 1.1px;
}
.summary-card, .featured-article {
  background: #F5E2C5;
  border-radius: 10px 2px 12px 2px;
  padding: 17px 20px;
  margin-top: 18px;
  color: #53341F;
  font-size: 1.13rem;
  box-shadow: 0 1px 4px 0 rgba(226,124,43,0.10);
}

/* --- CALENDAR & MISC SECTION EXTRAS --- */
.calendar-view { 
  margin-top: 20px;
  font-size: 1.13rem;
  background:#FFFDF8;
  border-radius:12px 2px 10px 2px;
  padding: 16px 22px;
  border:1.5px dashed var(--secondary);
  color: #20315A;
  font-style: italic;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin: 24px 0 0 0;
}
.partner-logos img { height: 42px; width: auto; }

/* --- BENEFITS & BULLET LISTS --- */
.benefits-list, .results-metrics ul, .benefit-highlights ul {
  margin-top: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-list li, .benefit-highlights li, .results-metrics li {
  position: relative;
  padding-left: 26px;
  font-size: 1.025rem;
}
.benefits-list li:before,
.benefit-highlights li:before,
.results-metrics li:before {
  content: '\2022';
  color: var(--secondary);
  font-size: 1.2em;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.2em;
}

/********* FOOTER **********/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 0;
  width: 100%;
  box-shadow: 0 -2px 18px 0 rgba(32,49,90,0.11);
  margin-top: 60px;
}
footer .container {
  padding-top: 34px;
  padding-bottom: 24px;
}
footer .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius:0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}
.branding-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
}
.branding-footer img { height:40px; }
.branding-footer div span { font-size: .92rem; color: #F2B705; display: block; letter-spacing: 0.5px; margin-top:2px; }
.footer-nav, .footer-social {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  opacity: 0.9;
  letter-spacing: 1.2px;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover { color: var(--retro-orange); opacity:1; }
.footer-contact { font-size: 0.95rem; color: #F5F7FA; display: flex; flex-direction: column; gap: 6px; opacity: 0.94; }
.footer-contact img { width: 20px; margin-right: 7px; vertical-align: middle; display:inline; }
.footer-social { gap:11px; }
.footer-social a img { width:30px; margin-right:7px; ;filter: grayscale(0.5);transition:filter 0.17s; }
.footer-social a:hover img { filter:none; }
.footer-copy { width: 100%; text-align: center; font-size: 0.95rem; color: #DDE8F5; opacity:0.97; margin-top: 24px; }

@media (max-width: 1024px) {
  footer .content-wrapper { flex-direction: column; gap:24px; align-items:flex-start; }
}

/******** RESPONSIVE DESIGN ********/
@media (max-width:900px) {
  .features-grid, .insights-preview-grid, .solutions-cards, .team-bios, .case-studies, .research-papers-list, .service-categories-grid, .events-list, .insights-list-grid {
    gap: 18px;
  }
  .card, .features-grid > div, .insights-preview-grid > div, .solutions-cards > div, .team-bios > div, .case-studies > div, .research-papers-list > div, .service-categories-grid > div, .events-list > div {
    min-width:180px;
    padding-left:12px; padding-right:12px;
  }
  .container { padding-left:10px; padding-right:10px; }
}
@media (max-width:768px) {
  .container { padding:0 5px; }
  header, footer { flex-direction: column; align-items: stretch; }
  .hero .content-wrapper { padding:30px 12px 28px 12px; border-radius: 14px; }
  .content-wrapper { padding:18px 8px; border-radius:9px; }
  .features-grid, .insights-preview-grid, .solutions-cards, .team-bios, .case-studies, .research-papers-list, .service-categories-grid, .events-list, .insights-list-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section { flex-direction: column; gap: 15px; }
  .testimonial-card { flex-direction: column; gap: 13px; }
  .card-content { align-items: flex-start; }
  .branding-footer { flex-direction: column; gap:8px; }
}
@media (max-width:480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: .98rem; }
  .hero { padding: 26px 0 30px 0; }
}

/********* BUTTONS *********/
button, .cta-btn, input[type=submit], .mobile-menu-toggle, .mobile-menu-close {
  border:none; outline:none; cursor:pointer; user-select: none;
}
button, input[type=submit] {
  padding: 12px 32px;
  border-radius: 12px 2px 14px 2px;
  font-size: 1rem;
  background: var(--secondary);
  color: #1E2328;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  transition: background 0.19s, box-shadow 0.19s, color 0.18s;
  box-shadow: 0 1px 8px rgba(226,124,43,0.08);
}
button:hover, input[type=submit]:hover {
  background: var(--retro-orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(226,124,43,0.16);
}

/********* LINK HOVER STATES *********/
a {
  transition: color 0.16s, border-bottom 0.17s;
}
a:focus, a:hover {
  color: var(--retro-rose);
  text-decoration: underline;
  outline: none;
}
.cta-btn:focus { box-shadow: 0 0 0 2px var(--secondary); }

/********* MICRO ANIMATIONS **********/
.card, .features-grid > div, .insights-preview-grid > div, .solutions-cards > div, .team-bios > div, .case-studies > div, .research-papers-list > div, .service-categories-grid > div, .events-list > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s;
}
.cta-btn, button, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, box-shadow 0.20s, filter 0.15s;
}

@media (hover: hover) {
  .footer-nav a:hover { color: var(--retro-orange); }
  .main-nav a:hover { color: var(--secondary); }
  .mobile-nav a:hover { color: var(--secondary); }
  .cta-btn:hover { background: var(--retro-orange); color:#fff; }
}

/********* TYPOGRAPHY SCALE **********/
h1 { font-size:2.5rem; }
h2 { font-size:2rem; }
h3 { font-size:1.25rem; }
@media (max-width:768px) {
  h1 { font-size:1.7rem; }
  h2 { font-size:1.16rem; }
  h3 { font-size:1.01rem; }
}

/********* LISTS **********/
ul, .text-section ul { margin-top:9px; margin-bottom:11px; padding-left:18px; }
ul li { position:relative; margin-bottom:7px; }
ul li:before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--secondary);
  border-radius: 30%;
  margin-right: 8px;
  position:relative;
  left:-2px;
  vertical-align: middle;
}

/********* QUOTES for TESTIMONIALS **********/
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #53341F;
  font-size:1.12rem;
  margin-bottom:0;
  padding:0;
}
.testimonial-card cite {
  font-weight: 600;
  color: #20315A;
  opacity:1;
  margin-left: 12px;
}

/* --- ENSURE TESTIMONIAL CARD CONTRAST ---*/
.testimonial-card { background: #FFF9EE; color: #20315A; border-color: var(--secondary); }
.testimonial-card blockquote { color: #53341F; }
.testimonial-card cite { color: #20315A; }

/********* COOKIE CONSENT BANNER *********/
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom:0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF5DC 70%, #F2B70519 100%);
  border-top: 2px solid var(--secondary);
  z-index: 3000;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 16px 0 rgba(242,183,5,0.13);
  animation: banner-fadein 0.5s cubic-bezier(0.7,0,0.5,1);
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes banner-fadein {
  0% { transform: translateY(100px); opacity:0; }
  95% { opacity:1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1.03rem; color: #49310E; margin-bottom: 14px;
  text-align: center;
}
.cookie-banner__actions {
  display: flex; gap:20px; justify-content: center; }
.cookie-banner button {
  font-size: 1rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 17px 3px 13px 3px;
  font-weight: 700;
  padding: 9px 26px;
  margin:0;
  transition: background 0.17s, color 0.16s;
}
.cookie-banner button.cookie-reject {
  background: #F8E3DB;
  color: #C65B7C;
}
.cookie-banner button.cookie-settings {
  background: #E6E6DD;
  color: #20315A;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  outline: 2px solid var(--secondary);
  background: var(--retro-orange);
  color: var(--white);
}

/* COOKIE PREFS MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(32,49,90, 0.14);
  z-index: 4000;
  display: flex;
  align-items:center;
  justify-content:center;
  transition: background 0.18s;
}
.cookie-modal {
  background: #FFF9EE;
  border-radius: 17px 4px 11px 4px;
  box-shadow: 0 8px 55px 2px rgba(188,110,40,0.18);
  max-width: 420px;
  width: 96vw;
  padding: 34px 24px 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modal-popin 0.38s cubic-bezier(.21, 1.13, .46, .92);
}
@keyframes modal-popin {
  0% { transform: scale(0.84); opacity:0; }
  80% { opacity:1; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 7px;
  letter-spacing:1.1px;
}
.cookie-category {
  display: flex; justify-content:space-between; align-items:center; margin-bottom: 10px;
}
.cookie-category-name { color:var(--retro-rose); font-weight:700; font-size:1.04rem; }
.cookie-category-toggle {
  border:2px solid var(--secondary);
  background: #fff;
  border-radius: 5px;
  width:38px; height:24px;
  position:relative;
  cursor:pointer;
  transition:border 0.16s;
}
.cookie-category-toggle input[type=checkbox] {
  display:none;
}
.cookie-category-toggle:before {
  content: '';
  display:block;
  width:18px; height:18px; border-radius:50%; background:var(--secondary);
  position:absolute; left:3px; top:2px;
  transition: left 0.15s, background 0.18s;
}
.cookie-category-toggle input[type=checkbox]:checked + span:before {
  left:17px;
  background:var(--retro-orange);
}
.cookie-category-desc { color:var(--primary); font-size:.95rem; margin-top:2px; }
.cookie-modal .cookie-close {
  align-self: flex-end;
  background: none;
  color: var(--retro-brown);
  font-size: 1.7rem;
  border:none;
  cursor:pointer;
  margin-bottom: 0;
  margin-top: 0;
  padding:0;
}
.cookie-modal .cookie-modal-actions {
  display:flex; gap:14px; margin-top:14px; justify-content:center;
}
.cookie-modal .cookie-modal-actions button {
  min-width:98px;
  border-radius: 12px 4px 14px 4px;
}
.cookie-modal .cookie-modal-actions button:focus, .cookie-modal .cookie-modal-actions button:hover {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-category[aria-disabled="true"] {
  opacity: .66;
  pointer-events: none;
}

/* Hide banner/modal by default for integration */
.cookie-banner, .cookie-modal-overlay { display: none; }

/******** MISC STYLES ********/
.privacy-reassurance {
  margin-top: 13px;
  background: #FFFDF8;
  padding: 9px 13px;
  border-radius: 7px;
  font-size: .95rem;
  color: #49310E;
}
.tagline {
  color: #E27C2B;
  font-weight: bold;
  font-size: 1.08rem;
  margin: 12px 0 0 0;
}
.contact-detail, .contact-info {
  background: #FFF9EE;
  border-radius: 14px 2px 20px 2px;
  padding:20px 22px; color: #20315A;
  margin-top: 11px; line-height: 1.85;
  font-size: 1.04rem;
}
.contact-detail img, .contact-info img {
  width: 19px; margin-right: 8px; vertical-align:middle;
}

/* --- Accessibility/Focus States --- */
*:focus {
  outline: 2px solid #F2B70588;
  outline-offset: 2px;
  z-index:3;
}

/* --- Hide visually on mobile for elements only on desktop --- */
@media (max-width:576px) {
  .hero h1 { font-size: 1.24rem; }
  .hero p, .hero .cta-btn { font-size: .98rem; }
  .content-wrapper { padding:7px 1px; }
}

/*********** END OF VINTAGE RETRO CSS ***********/
