/* ===== 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1B2229;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F8F6F0;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* ===== CUSTOM FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #157145;
  --secondary: #28436E;
  --accent: #F8F6F0;
  --neon: #1DF2AE;
  --dark: #11191F;
  --gray: #21252B;
  --card-bg: #202938;
  --card-bg-light: #304054;
  --error: #ff5252;
  --shadow: 0 2px 24px rgba(29,242,174,0.12);
  --radius: 20px;
  --transition: all 0.25s cubic-bezier(.4,1,.5,1);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2.1rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.08rem; }
p, li, ul, ol, span, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #DBF7FF;
  line-height: 1.7;
}
p { margin-bottom: 16px; }
strong { color: var(--neon); font-weight: bold; }
blockquote {
  background: var(--card-bg);
  border-left: 4px solid var(--neon);
  padding: 16px 24px;
  margin: 20px 0;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  box-shadow: var(--shadow);
}
.text-section blockquote span {
  display: block;
  margin-top: 8px;
  color: var(--neon);
  font-style: normal;
  font-weight: 600;
}

/* ===== PAGE BODY BACKGROUND ===== */
body {
  /* Subtle diagonal dual-color background with a slight techy vibe, replaced for better compatibility */
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
}

/* ===== HEADER, NAVIGATION, LOGO ===== */
header {
  background: var(--card-bg);
  box-shadow: 0 6px 32px rgba(21,113,69,0.15);
  position: sticky;
  top: 0;
  z-index: 40;
  margin-bottom: 32px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px 18px 20px;
}
header img {
  height: 44px; width: auto;
  filter: drop-shadow(0 2px 10px var(--neon));
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1 1 auto;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  color: var(--accent);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon);
  background: rgba(29,242,174,0.08);
  box-shadow: 0 2px 10px rgba(29,242,174,0.09);
}

.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--neon);
  color: var(--dark);
  border-radius: 28px;
  padding: 8px 32px;
  box-shadow: 0 2px 12px rgba(29,242,174,0.16);
  margin-left: 22px;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--neon);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--neon);
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(21,113,69,0.18);
}

/* ===== BURGER/HAMBURGER MENU BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 16px rgba(29,242,174,0.29);
  margin-left: 24px;
  transition: var(--transition);
  z-index: 50;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--neon);
}

/* ===== MOBILE SLIDING MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 25, 36, 0.97);
  z-index: 1004;
  transform: translateX(100vw);
  transition: transform 0.3s cubic-bezier(.86,.06,.29,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 26px 26px 6px 0;
  z-index: 1007;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--neon);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  padding: 14px 0;
  margin-right: 8px;
  width: 100%;
  transition: color 0.15s;
  border-radius: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon);
  background: rgba(29,242,174,0.06);
}

@media (max-width: 1024px) {
  header .main-nav { gap: 16px; margin-left: 18px; }
}

@media (max-width: 900px) {
  header .container { gap: 10px; }
  .cta-btn { margin-left: 10px; }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  header .container { flex-direction: row; }
}
@media (max-width: 500px) {
  header .container { padding: 10px 8px; }
  .mobile-menu-close { margin: 18px 14px 0 0; }
  .mobile-nav { padding-left: 16px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray);
  border-top: 1px solid rgba(29, 242, 174, 0.12);
  padding: 48px 0 12px 0;
  margin-top: 40px;
}
footer .container {
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--neon);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.82;
  transition: opacity 0.19s, color 0.13s;
}
.footer-nav a:hover { opacity: 1; color: var(--accent) }
footer p { font-size: 0.9rem; color: #BCC9DF; }

/* =========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(110deg, var(--dark) 80%, var(--primary) 120%);
  margin-bottom: 60px;
  padding: 64px 0 52px 0;
  box-shadow: 0 14px 44px rgba(21,113,69,0.11);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  background: linear-gradient(90deg, var(--neon) 22%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero .cta-btn {
  font-size: 1.15rem;
  padding: 10px 46px;
  background: var(--neon);
  color: var(--dark);
  border: none;
  border-radius: 30px;
  transition: var(--transition);
}
.hero .cta-btn:hover {
  background: var(--primary);
  color: var(--neon);
}

@media (max-width: 768px) {
  .hero .content-wrapper { padding-left: 0; padding-right: 0; }
  .hero {padding: 38px 0 26px 0;}
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.04rem; }
  .hero .cta-btn { font-size: 1.02rem; padding: 9px 22px; }
}

/* ============ SECTIONS SPACING =========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.cta {
  background: linear-gradient(130deg, var(--primary) 78%, var(--neon) 120%);
  border-radius: var(--radius);
  box-shadow: 0 2px 32px rgba(29,242,174,0.11);
}
.cta h2 { color: var(--accent); }

@media (max-width: 768px) {
  section { padding: 26px 6px; margin-bottom: 34px; }
  .cta { padding: 22px 8px; }
}

/* ========= CONTENT & FLEXBOX LAYOUTS ======== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, border-color 0.15s;
  border: 1.5px solid rgba(21,113,69,0.16);
}
.card:hover { box-shadow: 0 8px 32px rgba(29,242,174,0.19); border-color: var(--neon); }

.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) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== FEATURES FLEX WRAP ===== */
.features-grid, .trend-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.features-grid > div, .trend-highlights > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--card-bg-light);
  border-radius: var(--radius);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 18px rgba(29,242,174,0.11);
  border: 1.5px solid rgba(29,242,174,0.09);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.2s;
}
.features-grid > div:hover,
.trend-highlights > div:hover {
  box-shadow: 0 8px 24px rgba(21,113,69,0.22), 0 0 0 2px var(--neon);
  border-color: var(--neon);
}
.features-grid img, .trend-highlights img {
  height: 45px; width: 45px;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 12px var(--neon));
}
.features-grid h3, .trend-highlights h3 {
  color: var(--neon);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .features-grid > div, .trend-highlights > div {
    flex: 1 1 180px;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .features-grid, .trend-highlights {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ====== TESTIMONIALS ======= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #263747;
  border-radius: var(--radius);
  box-shadow: 0 2px 24px rgba(40,67,110,0.088);
  margin-bottom: 22px;
  border-left: 4px solid var(--neon);
  transition: box-shadow 0.18s, border-color 0.2s;
}
.testimonial-card p {
  color: #263747;
  margin-bottom: 0;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-left: auto;
}
.testimonial-card strong {
  color: var(--secondary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(29,242,174,0.09), 0 0 0 2px var(--secondary);
  border-left: 4px solid var(--primary);
}

@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 10px; padding: 14px 10px; }
  .testimonial-card span { margin-left: 0; font-size: 0.97rem; }
}

/* ======= TEAM LISTS, STORIES ======= */
.team-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.team-member {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px 18px 16px 18px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--neon);
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 290px;
}
.team-member blockquote {
  margin: 14px 0 0 0;
  font-size: 1rem;
  padding: 10px 16px;
  border-left: 3px solid var(--primary);
  background: var(--gray);
  color: var(--neon);
  box-shadow: none;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .team-list { flex-direction: column; gap: 14px; }
  .team-member { width: 100%; min-width: 0; }
}

.stories-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.story-summary {
  background: var(--card-bg-light);
  border-radius: 15px;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  color: var(--accent);
  font-size: 1.07rem;
  margin-bottom: 12px;
}

.featured-quotes blockquote {
  border-left: 4px solid var(--neon);
  color: var(--neon);
  background: var(--gray);
  box-shadow: none;
}

/* ===== TEXT SECTIONS, ICON LISTS ===== */
.text-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul, .text-section ol {
  margin-left: 22px;
  margin-bottom: 10px;
  padding-left: 0;
}
.text-section li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 9px;
}
.text-section li img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 8px var(--primary));
}
.text-section em { color: var(--neon); }
@media (max-width: 750px) {
  .text-section { padding: 14px 10px; }
  .text-section ul { margin-left: 10px; }
}

/* ===== CTA SECTIONS ===== */
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.cta h2 {
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(90deg, var(--neon) 19%, var(--accent) 90%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 17px;
}
.cta .cta-btn {
  font-size: 1.25rem;
  background: var(--dark);
  color: var(--neon);
  border: 2px solid var(--neon);
  border-radius: 28px;
  padding: 11px 44px;
  margin-top: 9px;
  letter-spacing: 0.7px;
  box-shadow: 0 2px 22px rgba(29,242,174,0.17);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 600px) {
  .cta h2 { font-size: 1.13rem; }
  .cta .cta-btn { font-size: 0.98rem; }
}

/* ====== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: var(--gray);
  border-top: 2px solid var(--neon);
  box-shadow: 0 -4px 32px rgba(29,242,174,0.13);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 22px 20px 22px 32px;
  z-index: 1400;
  font-size: 1rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition), opacity 0.18s linear;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--accent);
  flex: 1 1 auto;
  margin: 0;
}
.cookie-banner .cookie-btn {
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 18px;
  border: none;
  margin-left: 12px;
  background: var(--neon);
  color: var(--dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: var(--transition);
}
.cookie-banner .cookie-btn.reject {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid var(--neon);
}
.cookie-banner .cookie-btn.settings {
  background: var(--gray);
  color: var(--neon);
  border: 1.5px solid var(--neon);
}
.cookie-banner .cookie-btn:hover {
  filter: brightness(1.09);
  box-shadow: 0 0 0 2px var(--secondary);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 8px; font-size: 0.97rem; }
  .cookie-banner .cookie-btn { width: 100%; margin-left: 0; margin-top: 8px; }
}

/* ====== COOKIE MODAL ======= */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(15, 25, 36, 0.84);
  z-index: 1420;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.24s .01s both;
}
@keyframes fadeIn {from{opacity:0}to{opacity:1}}
.cookie-modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  color: var(--accent);
  padding: 34px 28px;
  min-width: 280px;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  box-shadow: 0 12px 54px rgba(21, 113, 69, 0.13);
  z-index: 2220;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--neon);
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: var(--neon);
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1.06rem;
  color: var(--accent);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-category.essential label { color: var(--primary); font-weight: 700; }

.cookie-modal .modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 109px;
  margin-left: 0;
  font-size: 1.07rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--neon);
  color: var(--dark);
  border-radius: 50%;
  font-size: 1.17rem;
  width: 34px;
  height: 34px;
}
.cookie-modal .modal-close:hover { background: var(--primary); color: var(--accent); }

@media (max-width: 500px) {
  .cookie-modal { padding: 24px 7px; min-width: 0; }
}

/* ===== BUTTON BASE ===== */
button,
input[type=button],
input[type=submit],
.cta-btn {
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: var(--transition);
  outline: none;
}

/* ===== VISUAL EFFECTS: NEON GLOW RING ON FOCUS ===== */
a:focus-visible, button:focus-visible, .cta-btn:focus {
  box-shadow: 0 0 0 2.5px var(--neon), 0 0 0 7px rgba(29,242,174,.10);
  outline: none;
}

/* ===== GENERAL SPACINGS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section { margin-bottom: 30px; padding: 16px 2px; }
}

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

/* =============== MEDIA QUERIES, RESPONSIVENESS =============== */
@media (max-width: 800px) {
  .card-container, .features-grid, .trend-highlights, .team-list, .footer-nav, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-nav { gap: 8px; }
  .card { padding: 13px 8px; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
}


/* ============ FORMATTING SPECIALS =========== */
ul li strong, ol li strong {
  color: var(--neon);
  font-weight: 700;
}

/* =========== ADDRESS/CONTACT LIST ITEMS ======= */
.text-section ul li img {
  margin-right: 8px;
}
.text-section ul li a {
  color: var(--neon);
  text-decoration: underline;
  padding: 0 2px;
  font-weight: 600;
}
.text-section ul li a:hover {
  color: var(--primary);
}

/* ============= THANK YOU PAGE BTN =========== */
.thankyou-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.thankyou-cta .cta-btn {
  background: var(--neon);
  color: #1B2229;
  border: none;
  padding: 11px 44px;
  font-size: 1.1rem;
  border-radius: 30px;
}

/* ===== CORE SPACING/MARGIN RULES for CARDS and SECTIONS ===== */
.features-grid > div, .trend-highlights > div, .card, .team-member {
  margin-bottom: 20px;
}
.card-container > * { margin-bottom: 20px; }
.card-content > * { margin-bottom: 8px; }
/* 8px, 16px, 24px, 32px as appropriate */


/* ================== ANIMATIONS & MICROS ====================== */
.card, .team-member, .features-grid > div, .trend-highlights > div {
  transition: box-shadow 0.21s, border 0.19s, background 0.18s, color 0.18s;
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .cookie-btn {
  transition: var(--transition);
}
@media (hover:hover) {
  .card:hover, .team-member:hover { box-shadow: 0 8px 42px rgba(21,113,69,0.13), 0 0 0 2px var(--neon); }
}

/* ===== SELECTORS FOR HTML STRUCTURE VERIFICATION ===== */
/* Class selectors matches .features-grid, .trend-highlights, .team-list, .testimonial-card, .text-section, .content-wrapper, .cta-btn, .main-nav, .footer-nav, .stories-list, .story-summary, .mobile-menu-*  etc. */

/* ===== HIDE GRID AND COLUMNS PROPERTIES (SAFETY) ===== */
/* Intentionally left blank: Never use display: grid; or grid-* or column-* per requirements */
