/* RESET & BASE STYLES ---------------------------------------------------*/
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2B3A4B;
  background: #F4F1EC;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #DF8400;
  text-decoration: none;
  transition: color .18s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #2B3A4B;
  outline: none;
  text-decoration: underline;
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 40px;
  background: #DF8400;
  color: #fff;
  border: none;
  transition: background 0.2s cubic-bezier(.55,0,.1,1), box-shadow 0.2s, color 0.18s cubic-bezier(.55,0,.1,1);
  box-shadow: 0 2px 16px rgba(43,58,75,0.10);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-block;
  min-width: 180px;
  margin-top: 16px;
  outline: none;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #2B3A4B;
  color: #DF8400;
  box-shadow: 0 6px 24px rgba(43,58,75,0.13);
}
button:active, .cta-btn:active {
  background: #1d242c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #2B3A4B;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.19rem; }
h5, h6 { font-size: 1rem; }

hr {
  border: none;
  border-top: 2px solid #DF8400;
  margin: 32px 0;
}

blockquote {
  border-left: 4px solid #DF8400;
  background: #fff3e7;
  margin: 24px 0;
  padding: 18px 28px;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B3A4B;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
ul, ol {
  margin-bottom: 24px;
  padding-left: 2.2em;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}
ul {
  list-style: disc outside;
}
ol {
  list-style: decimal outside;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 4px 32px rgba(43,58,75,0.08);
}

/* FLEXBOX LAYOUTS & BOLD SECTIONS -------------------------------------------*/
.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}
.feature-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature-grid li,
.service-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(43,58,75,0.09);
  border-radius: 22px;
  padding: 32px 24px;
  flex: 1 1 260px;
  min-width: 222px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border: 3px solid transparent;
  transition: border 0.18s, box-shadow 0.18s;
}
.feature-grid li:hover,
.service-card:hover {
  border: 3px solid #DF8400;
  box-shadow: 0 7px 32px rgba(43,58,75,0.16);
  z-index: 2;
}
.service-card img, .feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(43,58,75,0.12);
  position: relative;
  padding: 24px;
  z-index: 1;
  min-width: 250px;
}
.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-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(43,58,75,.07);
  min-width: 260px;
  max-width: 390px;
  margin-bottom: 20px;
  border-left: 7px solid #DF8400;
  color: #2B3A4B;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(43,58,75,0.14);
}
.stars {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #DF8400;
  margin-top: -14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  user-select: none;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.event-stories-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.event-stories-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(43,58,75,0.08);
  padding: 26px 24px;
  margin-bottom: 0;
}

.thank-you-section {
  margin-bottom: 60px;
  padding: 50px 20px 60px 20px;
  background: #DF8400;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 38px rgba(43,58,75,0.10);
  text-align: center;
}
.thank-you-section h1,
.thank-you-section p {
  color: #fff;
}

/* HERO STYLES ---------------------------------------------------------------*/
.hero {
  width: 100%;
  background: #2B3A4B;
  color: #fff;
  padding: 70px 0 80px 0;
  border-radius: 0 0 38px 38px;
  margin-bottom: 60px;
  box-shadow: 0 14px 56px rgba(43,58,75,0.12);
  position: relative;
  overflow: hidden;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 26px;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hero p {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.hero .cta-btn {
  background: #DF8400;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 18px rgba(223,132,0,.18);
}
.hero .cta-btn:hover {
  background: #fff;
  color: #DF8400;
}


/* CTA BANNER ---------------------------------------------------------------*/
.cta-banner {
  margin: 60px 0 0 0;
  background: #2B3A4B;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(43,58,75,0.17);
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .cta-btn {
  background: #DF8400;
  color: #fff;
  border: 2px solid #DF8400;
  min-width: 200px;
}
.cta-banner .cta-btn:hover {
  background: #fff;
  color: #DF8400;
  border: 2px solid #DF8400;
}

/* NAV BAR ------------------------------------------------------------------*/
.main-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(43,58,75,0.05);
  border-radius: 0 0 22px 22px;
  padding: 18px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  z-index: 100;
}
.main-nav > a {
  color: #2B3A4B;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 18px;
  transition: background 0.17s, color 0.17s;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: #DF8400;
  color: #fff;
}
.main-nav img {
  width: 88px;
  height: auto;
  margin-right: 8px;
}

/* FOOTER -------------------------------------------------------------------*/
footer {
  background: #2B3A4B;
  color: #fff;
  padding: 52px 0 28px 0;
  margin-top: 80px;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -6px 32px rgba(43,58,75,0.11);
}
.footer-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.02rem;
  opacity: .93;
  transition: color 0.17s, opacity 0.17s;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-nav a:hover { color: #DF8400; opacity: 1; }
.contact-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.contact-footer img {
  width: 52px;
  height: auto;
}
.contact-footer p {
  color: #fff;
  opacity: .85;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

/* CONTACT & MAP BLOCKS -----------------------------------------------------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(43,58,75,0.06);
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #DF8400;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: #2B3A4B;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 18px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(43,58,75,0.06);
}
.map-location img {
  width: 34px;
  height: 34px;
}
.lead-text {
  font-size: 1.12rem;
  color: #2B3A4B;
  margin-bottom: 18px;
}

/* SPACING & ALIGNMENT ------------------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MOBILE MENU --------------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #DF8400;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 42px;
  padding: 8px 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(43,58,75,0.13);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: #DF8400;
  border: 2px solid #DF8400;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2B3A4B;
  box-shadow: 0 0 80px 8px rgba(43,58,75,0.31);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.65,.01,.27,.97);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.38s cubic-bezier(.65,.01,.27,.97), opacity 0.32s;
}
.mobile-menu-close {
  margin-top: 32px;
  align-self: flex-end;
  margin-right: 32px;
  background: none;
  border: none;
  color: #DF8400;
  font-size: 2.3rem;
  font-weight: 900;
  cursor: pointer;
  padding: 4px 14px;
  transition: color .19s, background .16s;
  border-radius: 26px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #DF8400;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 72px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  padding: 18px 0;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  width: 100%;
  text-align: center;
  border-radius: 16px;
  transition: background 0.19s, color 0.22s, border 0.13s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #DF8400;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.mobile-menu {
  overflow-y: auto;
}

/* COOKIE CONSENT BANNER ----------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #2B3A4B;
  box-shadow: 0 -4px 22px rgba(43,58,75,.15);
  padding: 22px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  min-width: 230px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookieBannerSlideUp .6s cubic-bezier(.65,.01,.27,.97);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #2B3A4B;
  margin-right: 24px;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn {
  background: #DF8400;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 24px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow .15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2B3A4B;
  color: #DF8400;
  box-shadow: 0 2px 16px rgba(43,58,75,.13);
}
.cookie-settings-btn {
  background: #fff;
  color: #2B3A4B;
  border: 2px solid #DF8400;
  padding: 10px 18px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #DF8400;
  color: #fff;
}

/* COOKIE MODAL -------------------------------------------------------------*/
.cookie-preferences-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(43,58,75,0.60);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
}
.cookie-preferences-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #2B3A4B;
  border-radius: 28px;
  padding: 38px 22px 30px 22px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 8px 42px rgba(43,58,75,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn 0.38s cubic-bezier(.65,.01,.27,.97);
}
@keyframes cookieModalIn {
  from { transform: scale(0.91) translateY(60px); opacity: .2; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: #2B3A4B;
}
.cookie-modal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.cookie-modal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: 8px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #DF8400;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-left: 6px;
  border: none;
}
.cookie-toggle[disabled] {
  filter: grayscale(1) opacity(0.54);
  cursor: not-allowed;
}
.cookie-toggle-indicator {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1px;
  transition: left 0.14s;
  box-shadow: 0 1px 5px #2B3A4B22;
}
.cookie-toggle.active .cookie-toggle-indicator {
  left: 16px;
  background: #2B3A4B;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 1.4rem;
  color: #DF8400;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 900;
  border-radius: 20px;
  padding: 2px 12px;
  transition: background 0.14s, color 0.15s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #DF8400;
  color: #fff;
}

/* TYPOGRAPHY ---------------------------------------------------------------*/
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WlhzQ.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v29/mem8YaGs126MiZpBA-UFVZ0e.ttf') format('truetype');
  font-display: swap;
}

/* GEOMETRIC SHAPES/ACCENTS ------------------------------------------------*/
.feature-grid li:before, .service-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -22px; right: -22px;
  width: 54px; height: 54px;
  background: #F4F1EC;
  border-radius: 50%;
  z-index: 0;
  opacity: .32;
}
.service-card:before {
  background: #DF8400;
  opacity: .10;
}

/* MEDIA QUERIES: RESPONSIVE DESIGN -----------------------------------------*/
@media (max-width: 1024px) {
  .feature-grid, .service-grid {
    gap: 18px;
  }
  .container {
    max-width: 96vw;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav > a {
    font-size: .95rem;
    padding: 7px 9px;
  }
  .feature-grid li, .service-card {
    min-width: 180px;
    padding: 20px 12px;
  }
  .testimonial-card { max-width: 98vw; }
  .event-stories-list article {
    padding: 14px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 17px; right: 7px;
    z-index: 2000;
  }
  .hero {
    padding: 46px 0 56px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 { font-size: 2rem; }
  .section, .cta-banner {
    padding: 28px 6px;
    border-radius: 18px;
  }
  .card-container, .testimonial-cards, .feature-grid, .service-grid, .event-stories-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonal-card, .card, .service-card { max-width: 98vw; }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
  }
  .thank-you-section {
    border-radius: 20px;
  }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 18px 4vw 18px 4vw;
  }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: .97rem; }
  h2 { font-size: 1.35rem; }
  .section, .cta-banner {
    padding: 14px 2px;
    border-radius: 13px;
  }
  .thank-you-section {
    padding: 24px 4vw 32px 4vw;
    font-size: 1rem;
  }
  .footer-nav {
    font-size: .93rem;
    gap: 7px;
  }
  .cookie-modal-content {
    padding: 6vw 2vw 16px 2vw;
    font-size: .97rem;
  }
}

/* ANIMATIONS ---------------------------------------------------------------*/
.cta-btn, button, .feature-grid li, .service-card, .testimonial-card, .card {
  transition: box-shadow .15s, border .17s, transform .18s;
}
.cta-btn:active, button:active {
  transform: translateY(2px) scale(.96);
  box-shadow: 0 1px 2px #2B3A4B30;
}
.feature-grid li:active, .service-card:active, .testimonial-card:active, .card:active {
  transform: scale(.98);
  box-shadow: 0 1px 4px #2B3A4B22;
}

/* UTILITY CLASSES (FONT, MISC) ---------------------------------------------*/
.font-display { font-family: 'Montserrat', Arial, sans-serif; font-weight: 900; }
.font-body { font-family: 'Open Sans', Arial, sans-serif; }
.bg-primary { background: #2B3A4B !important; }
.bg-secondary { background: #DF8400 !important; }
.bg-accent { background: #F4F1EC !important; }
.text-primary { color: #2B3A4B !important; }
.text-secondary { color: #DF8400 !important; }
.text-accent { color: #F4F1EC !important; }

/* ACCESSIBILITY & FOCUS ----------------------------------------------------*/
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .cookie-btn:focus {
  outline: 2px solid #DF8400;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #F4F1EC, 0 0 0 6px #DF840060;
}

/* Hide visually, but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ENSURE MINIMUM SPACING between cards/sections ----------------------------*/
.section > *,
.card-container > *,
.card,
.testimonial-card {
  margin-bottom: 20px;
}
.section > *:last-child,
.card-container > *:last-child,
.card:last-child,
.testimonial-card:last-child {
  margin-bottom: 0;
}

