/* CSS Reset and Normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #191c1e;
  color: #d9e6df;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FABE50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E29B12;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; color: #FABE50; font-weight: 600;}
p {
  font-size: 1rem;
  color: #d9e6df;
  margin-bottom: 12px;
}
hr { border: 0; border-top: 1px solid #393d42; margin: 24px 0; }
strong { color: #FABE50; font-weight: 700; }

/* BRAND VARIABLES */
:root {
  --brand-primary: #396c4a;
  --brand-primary-dark: #335f41;
  --brand-secondary: #d9e6df;
  --brand-bg: #191c1e;
  --brand-accent: #FABE50;
  --brand-accent-dark: #E29B12;
  --brand-metal: #A7A9AC;
  --brand-highlight: #262729;
  --brand-white: #fff;
  --box-radius: 12px;
  --shadow: 0 2px 16px 0 rgba(23,29,28,0.13);
  --shadow-hover: 0 4px 36px 0 rgba(23,29,28,0.24);
  --transition: all 0.2s cubic-bezier(0.5,0,0.3,1);
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* HEADER */
header {
  background: #222527;
  border-bottom: 2px solid #393d42;
  box-shadow: 0 2px 8px 0 rgba(23,29,28,0.14);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px 16px;
}
.logo img {
  height: 44px;
  filter: grayscale(20%) drop-shadow(2px 2px 0 #E29B12);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #d9e6df;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}
.btn-primary {
  font-family: var(--font-display);
  background: var(--brand-primary);
  color: var(--brand-white);
  border: none;
  border-radius: var(--box-radius);
  padding: 13px 32px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-accent);
  color: #191c1e;
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
}
/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2.3rem;
  padding: 6px 16px;
  cursor: pointer;
}
/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #191c1ecf;
  z-index: 91;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 9px 0;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 6px 14px;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 28px 32px;
  width: 100vw;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.27rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #d9e6df;
  background: none;
  border-left: 6px solid transparent;
  padding: 8px 0 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, border-left 0.15s, background 0.18s;
  margin-bottom: 7px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: #22252799;
  border-left: 6px solid var(--brand-accent);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .btn-primary {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .logo img {
    height: 38px;
  }
  .main-nav {
    gap: 5px;
  }
  .btn-primary {
    padding: 12px 22px;
    font-size: 1.03rem;
  }
}
@media (max-width: 780px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 15px 12px 15px 9px;
  }
}

/* HERO BANNER (all pages) */
.hero {
  background: linear-gradient(120deg,#23262a 70%,#18311e 100%);
  padding: 64px 0 36px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  gap: 20px;
}
.hero h1 {
  font-size: 2.7rem;
  font-family: var(--font-display);
  color: var(--brand-accent);
  letter-spacing: 0.028em;
}
.hero p {
  font-size: 1.19rem;
  color: #d9e6df;
  margin-bottom: 0;
  margin-top: 0.5em;
}
.hero .btn-primary {
  margin-top: 1.2em;
}

/* SECTIONS & FLEX LAYOUTS */
.section, .about-short, .programmi, .mission, .team, .services, .resources, .faq, .privacy, .gdpr, .cookie-policy, .terms, .thankyou, .contact, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23262a;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
}

.features,
.team-member-profiles,
.feature-grid,
.value-icons,
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.value-icons li,
.team-member-profiles > div {
  background: #252829;
  border: 1.5px solid #393d42;
  box-shadow: var(--shadow);
  border-radius: var(--box-radius);
  padding: 22px 20px 18px 22px;
  margin-bottom: 20px;
  min-width: 215px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature-grid li:hover,
.team-member-profiles > div:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img,
.value-icons img,
.services ul img,
.resources ul img {
  width: 36px;
  margin-bottom: 10px;
  filter: grayscale(100%) brightness(1.4) contrast(1.2);
}

.team-member-profiles {
  gap: 24px;
  justify-content: flex-start;
}
.team-member-profiles > div h3 {
  font-size: 1.25rem;
  color: var(--brand-accent);
  margin-bottom: 0px;
}
.team-member-profiles > div span {
  font-size: 0.97rem;
  color: #c3cace;
  margin-top: 9px;
  font-family: var(--font-body);
}

.section h2, .features h2, .programmi h2, .about-short h2, .services h2, .mission h2, .team h2, .resources h2, .faq h2, .privacy h2, .gdpr h2, .terms h1, .thankyou h1, .contact h2, .cta h2 {
  color: var(--brand-accent);
  font-size: 2rem;
  margin-bottom: 1em;
}
.section ul, .features ul, .mission ul, .about-short ul, .resources ul, .faq-accordion, .services ul, .team-member-profiles {
  margin: 16px 0 0 0;
  list-style: none;
}
.section ul li, .features ul li, .mission ul li, .about-short ul li, .resources ul li, .services ul li {
  font-size: 1.05rem;
  color: #e0ede6;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icons {
  gap: 20px;
}
.value-icons li {
  font-size: 1.03rem;
  color: #d9e6df;
  min-width: 165px;
  padding: 10px 18px;
  align-items: center;
  border-bottom: 2px solid var(--brand-highlight);
}

.impact-narrative, .team-philosophy, .community-statement {
  background: #202224;
  border: 1.1px solid #393d42;
  padding: 16px 27px;
  border-radius: var(--box-radius);
  margin: 12px 0 0 0;
  color: #e2eaf0;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
}

.faq-accordion > div {
  margin-bottom: 22px;
  background: #212426;
  border-radius: var(--box-radius);
  border: 1px solid #393d42;
  padding: 17px 22px 13px 18px;
  box-shadow: 0 1px 10px 0 rgba(30,30,33,0.09);
  transition: box-shadow 0.2s;
}
.faq-accordion > div h3 {
  color: var(--brand-accent);
  font-size: 1.13rem;
  margin-bottom: 9px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.text-section { flex: 1 1 270px; }
.text-image-section img {
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
}
.contact-snippet p, .contact-snippet img {
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-map {
  margin: 0 0 18px 0;
  background: #222527;
  border-radius: 7px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  font-size: 1.07rem;
  color: #fff;
  display: flex;
  align-items: center;
}

/* Testimonial Cards */
.testimonials .testimonial-card, .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #222527;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 20px 32px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 670px;
  border-left: 6px solid var(--brand-accent);
  font-size: 1.12rem;
  line-height: 1.6;
  position: relative;
}
.testimonial-card h4 {
  color: var(--brand-primary-dark);
}
/* Ensure strong contrast for testimonials */
.testimonial-card p, .testimonial-card h4 {
  color: #222527;
}
.testimonial-card::before {
  content: "“";
  font-size: 2.6rem;
  color: var(--brand-accent);
  position: absolute;
  top: 5px;
  left: 14px;
  font-family: var(--font-display);
  opacity: 0.7;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cta {
  background: #191c1e;
  border-top: 2px solid #212224;
  box-shadow: 0 -2px 32px 0 rgba(23,29,28,0.09);
  border-radius: var(--box-radius);
  padding-top: 4.3em;
}
.cta .btn-primary {
  font-size: 1.1rem;
  margin-top: 18px;
}
.contact-snippet {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  margin-top: 2em;
}
.contact-snippet img {
  margin-right: 6px;
  width: 23px;
}

/****** FOOTER ******/
footer {
  background: #18191a;
  border-top: 2px solid #393d42;
  margin-top: 42px;
  box-shadow: 0 -7px 32px 0 rgba(29,28,28,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 36px 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #bbbbbc;
  font-size: 1.02rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--brand-accent)
}
.footer-contact p {
  color: #d2e5dd;
  font-size: 1rem;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 19px;
  margin-right: 5px;
  opacity: 0.78;
  filter: grayscale(100%);
}
.footer-brand {
  padding: 20px 0;
  text-align: center;
  background: #171819;
  color: #999c9e;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding: 22px 8px;
    align-items: flex-start;
  }
  .footer-contact {
    margin-top: 15px;
  }
}
/***** CARD CONTAINER FLEX PATTERN *****/
.card-container {
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.card {
  background: #252829;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 17px 18px;
  margin-bottom: 20px;
  border: 1.2px solid #393d42;
  position: relative;
  transition: box-shadow 0.2s, transform 0.14s;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.018);
}

/****** Mandatory Flex Patterns ******/
.section {
  margin-bottom: 60px !important;
  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;
}
/***** Responsive Flex for .text-image-section *****/
@media (max-width: 768px) {
  .content-wrapper { gap: 18px; }
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .card-container, .feature-grid, .value-icons, .team-member-profiles, .content-grid { gap: 14px; }
  .feature-grid li,
  .value-icons li,
  .team-member-profiles > div {
    min-width: 180px;
    padding: 18px 11px 12px 14px;
  }
}

/****** BUTTONS & INTERACTION ******/
button, .btn-primary {
  font-family: var(--font-display);
  outline: none;
  border: none;
}
button:active, .btn-primary:active {
  transform: scale(0.97);
}

/***** Card and Section Spacing *****/
.card, .feature-grid li, .testimonial-card {
  margin-bottom: 20px;
}
.section, .about-short, .mission, .programmi, .team, .cta, .thankyou, .contact, .privacy, .gdpr, .cookie-policy, .terms {
  margin-bottom: 60px;
}

/***** Cookie Consent Banner *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 201;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222527;
  color: #d9e6df;
  box-shadow: 0 -2px 36px 4px rgba(70,72,78,0.065);
  padding: 22px 12px 14px 12px;
  font-size: 1rem;
  width: 100vw;
  min-height: 80px;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.5,0,0.3,1), opacity 0.4s;
  gap: 28px;
}
.cookie-banner.hide {
  transform: translateY(100vh);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-message {
  max-width: 680px;
  font-size: 1.03rem;
  color: #fff;
}
.cookie-banner .cookie-btn {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 7px;
  padding: 10px 20px;
  margin-left: 11px;
  margin-right: 4px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  transition: background 0.21s, color 0.19s, transform 0.11s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.settings {
  background: #E29B12;
  color: #191c1e;
}
.cookie-banner .cookie-btn.reject {
  background: #393d42;
  color: #ececec;
}
.cookie-banner .cookie-btn:hover {
  background: var(--brand-accent);
  color: #23262a;
  transform: translateY(-1px) scale(1.05);
}

/***** Cookie Consent Modal *****/
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(25,28,30,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #212224;
  border-radius: 18px;
  padding: 40px 32px 24px 32px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 2px 24px 4px #2225275e;
  color: #e0ede6;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 2rem;
  color: #E29B12;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-content h2 {
  color: var(--brand-accent);
  font-family: var(--font-display);
  margin-bottom: 22px;
  font-size: 1.55rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.03rem;
  background: #23262a;
  padding: 6px 19px;
  border-radius: 7px;
}
.cookie-category .switch {
  margin-left: auto;
}
.cookie-category label {
  font-weight: 600;
  color: #fff;
}
.cookie-category.essential {
  opacity: 0.65;
}
.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch .slider {
  width: 40px;
  height: 21px;
  background: #393d42;
  border-radius: 15px;
  margin-right: 0;
  position: relative;
  transition: background 0.19s;
}
.switch .slider:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 15px; height: 15px;
  background: #d9e6df;
  border-radius: 50%;
  transition: 0.2s;
}
.switch input[type="checkbox"]:checked + .slider {
  background: var(--brand-accent);
}
.switch input[type="checkbox"]:checked + .slider:before {
  transform: translateX(19px);
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 7px;
  padding: 11px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  transition: background 0.21s, color 0.16s, transform 0.11s;
  cursor: pointer;
}
.cookie-modal-actions button:hover {
  background: var(--brand-accent);
  color: #23262a;
  transform: translateY(-1px) scale(1.04);
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 700px) {
  .hero {
    padding: 32px 0 20px;
  }
  .hero .content-wrapper {
    max-width: 99vw;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.17rem; }
  .section, .about-short, .mission, .programmi, .team, .cta, .thankyou, .contact, .privacy, .gdpr, .cookie-policy, .terms {
    padding: 20px 7px;
    margin-bottom: 38px;
  }
  .testimonial-card, .testimonials .testimonial-card {
    padding: 14px 11px 14px 18px;
    font-size: 1.01rem;
  }
  .feature-grid, .value-icons, .team-member-profiles, .card-container, .content-grid {
    gap: 8px;
  }
  .team-member-profiles > div,
  .feature-grid li, .value-icons li {
    padding: 10px 8px;
    min-width: 130px;
  }
}
@media (max-width: 540px) {
  .feature-grid, .value-icons, .team-member-profiles, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 7px;
  }
  .faq-accordion > div {
    padding: 12px 7px 9px 10px;
    font-size: 0.99rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .cta, .cta .btn-primary {
    text-align: left;
  }
}

/***** INDUSTRIAL MODERN ACCENTS *****/

.section, .about-short, .mission, .programmi, .team, .cta, .thankyou, .contact, .privacy, .gdpr, .cookie-policy, .terms {
  border: 1.35px solid #3f474d;
  box-shadow: 0 2px 20px 0 #23232333, 0 0px 1.5px 0 #C3C3C380;
  position: relative;
}
.section:before, .about-short:before, .mission:before, .programmi:before, .team:before, .cta:before, .thankyou:before, .contact:before, .privacy:before, .gdpr:before, .cookie-policy:before, .terms:before {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  top: -10px;
  width: 65px;
  height: 5px;
  background: linear-gradient(90deg, #A7A9AC 0%, #E29B12 100%);
  border-radius: 70px;
  opacity: 0.7;
  z-index: 0;
}

/***** Misc helpers & spacers *****/
.mt-2 { margin-top: 13px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 13px; }
.mb-4 { margin-bottom: 36px; }

/* Hide .section:before if too small */
@media (max-width: 540px) {
  .section:before, .about-short:before, .mission:before, .programmi:before, .team:before, .cta:before, .thankyou:before, .contact:before, .privacy:before, .gdpr:before, .cookie-policy:before, .terms:before {
    left: 10px;
    width: 40px;
  }
}

/***** Animations *****/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.section, .testimonial-card, .card, .feature-grid li, .team-member-profiles > div {
  animation: fadeInUp 0.7s cubic-bezier(0.5,0,0.3,1);
}

/***** Typography Scale (without clamp) *****/
@media (max-width: 420px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.08rem; }
  h3, h4 { font-size: 0.97rem; }
  body, p, .btn-primary, .main-nav a, .mobile-nav a {
    font-size: 0.98rem !important;
  }
}

/***** OVERLAP/STACK SAFEGUARD ******/
.section, .card, .testimonial-card, .feature-grid li {
  z-index: 3;
}

/***** End CSS *****/