/* RESET & BASE TYPOGRAPHY ---------------------------------------------- */
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;
  min-height: 100vh; 
  background-color: #F6F7F9;
  color: #222E36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #19704B;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover,
a:focus {
  color: #19B3AA;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
strong {
  font-weight: 700;
}
address {
  font-style: normal;
  color: #465046;
  margin-top: 8px;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* BRAND FONTS -------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222E36;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.65rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.20rem;
  line-height: 1.22;
  margin-bottom: 10px;
}
p, ul li, ol li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  background: #eaf6e5;
  color: #222e36;
  padding: 16px 24px;
  border-left: 5px solid #7eb986;
  border-radius: 12px;
  margin-bottom: 14px;
}
cite {
  display: block;
  color: #6C7A68;
  margin-top: 6px;
}

/* COLOR PALETTE (nature_organic + brand) ----------------------------------- */
:root {
  --primary: #222E36;
  --secondary: #19B3AA;
  --accent: #F6F7F9;
  --earth1: #7EB986;
  --earth2: #A1C181;
  --earth3: #ECEADD;
  --earth4: #D7C9AA;
  --earth5: #465046;
  --earth6: #19704B;
  --white: #fff;
  --black: #101B10;
  --shadow: 0 2px 8px rgba(34,46,54,0.06), 0 1.5px 8px rgba(45,69,41,0.04);
  --radius: 22px;
  --radius-card: 18px;
}

/* LAYOUT CONTAINERS -------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main {
  width: 100%;
  margin-bottom: 60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
@media (min-width: 800px) {
  .section {
    padding: 60px 30px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-card);
  background: var(--earth3);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover,
.card:focus {
  box-shadow: 0 6px 22px rgba(109,160,120,.14);
  transform: translateY(-3px) scale(1.02);
}

.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;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(109,160,120,0.10);
  margin-bottom: 22px;
  color: #222E36;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #19704B;
  padding: 0;
  font-size: 1.1em;
}
.testimonial-card cite {
  color: #465046;
  font-weight: 500;
}

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

/* FLEXBOX LAYOUT HELPERS --------------------------------------------------- */
.features > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 24px 0 18px 0;
}
.features > .container > .content-wrapper > ul li {
  display: flex;
  align-items: center;
  flex: 1 1 260px;
  background: var(--earth3);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(109,160,120,.08);
  gap: 14px;
  padding: 16px 20px;
  font-size: 1.01em;
}
.features img {
  width: 34px;
  height: 34px;
}

@media (max-width: 900px) {
  .features > .container > .content-wrapper > ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* HERO & CALL TO ACTION ---------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #F6F7F9 80%, #A1C181 120%);
  min-height: 340px;
  padding: 48px 0 40px 0;
  box-shadow: 0 1px 12px rgba(126, 185, 134, 0.09);
  border-radius: 0 0 32px 32px;
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--earth6);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.hero p {
  color: #465046;
  font-size: 1.13rem;
  margin: 0 0 1.2em 0;
}

.cta-section,
.cta-section .container {
  background: #EEF6ED;
  border-radius: 22px;
  margin-bottom: 0px;
}
.cta-section h2 {
  color: var(--earth6);
}

.cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: 32px;
  padding: 14px 36px;
  font-size: 1.13rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  margin: 16px 8px 0 0;
  box-shadow: 0 2px 12px rgba(34,46,54,0.09);
  outline: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #19704B;
  box-shadow: 0 5px 22px rgba(109,160,120,0.13);
  transform: translateY(-2px) scale(1.03);
  color: #fff !important;
  text-decoration: none;
}

/* LISTS, BADGES, AND CARD STYLES ------------------------------------------- */
.latest-articles > .container > .content-wrapper > ul,
.reviews > .container > .content-wrapper > ul,
.review-list > .container > .content-wrapper > ul,
.stories > .container > .content-wrapper > ul,
.startup-profiles > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.latest-articles > .container > .content-wrapper > ul li,
.reviews > .container > .content-wrapper > ul li,
.review-list > .container > .content-wrapper > ul li,
.stories > .container > .content-wrapper > ul li,
.startup-profiles > .container > .content-wrapper > ul li {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,46,54,0.07);
  flex: 1 1 300px;
  padding: 20px 22px 18px 22px;
  min-width: 220px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.latest-articles a, .review-list a {
  font-weight: 500;
  color: var(--earth6);
  border-bottom: 1.5px solid var(--earth1);
  padding-bottom: 2px;
  transition: color 0.19s, border-color 0.17s;
}
.latest-articles a:hover,
.review-list a:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.badge {
  background: var(--earth1);
  color: var(--primary);
  font-weight: bold;
  font-size: .98em;
  padding: 4px 11px;
  border-radius: 14px;
  margin-bottom: 0.6em;
}

/* ABOUT HIGHLIGHT, VALUES, TESTIMONIALS ------------------------------------ */
.about-highlight,
.about,
.values {
  background: var(--earth3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values > .container > .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.values > .container > .content-wrapper > ul li {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(109,160,120,.08);
  padding: 12px 19px;
  flex: 1 1 250px;
  font-size: 1.01em;
}

.testimonials .testimonial-card {
  background: #eaf6e5;
  border-left: 6px solid #A1C181;
  margin-bottom: 18px;
  box-shadow: 0 3px 14px rgba(126,185,134,0.13);
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}

/* CONTACT DETAILS ---------------------------------------------------------- */
.contact-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  background: var(--earth3);
  border-radius: 11px;
  gap: 8px;
  padding: 10px 18px;
  color: #222E36;
  font-size: 1rem;
}
.contact-details img {
  width: 24px;
  height: 24px;
}

/* FOOTER STYLES ------------------------------------------------------------ */
footer {
  background: #F4F7F4;
  padding: 34px 0 20px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -1.5px 16px rgba(126, 185, 134, 0.07);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  font-size: 15px;
  color: #19704B;
  opacity: 0.86;
  transition: color 0.19s, opacity 0.14s;
}
.footer-nav a:hover {
  color: #19B3AA;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  color: #465046;
  font-size: 14.5px;
}
.footer-contact p {
  margin-top: 10px;
  color: #A2A58B;
}
.footer-contact img {
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

/* HEADER BAR & NAV --------------------------------------------------------- */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--earth2);
  padding: 18px 0 18px 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 1.5px 16px rgba(30, 90, 70, 0.06);
  z-index: 100;
  position: relative;
}
.header-bar > a {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
.header-bar img {
  width: 80px;
  height: auto;
  border-radius: 9px;
  margin-right: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #19704B;
  padding: 8px 12px;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--earth1);
  color: var(--primary);
  text-decoration: none;
}
.main-nav .cta-primary {
  background: var(--secondary);
  color: #fff !important;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 2px 12px rgba(30, 90, 70, 0.09);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #19704B;
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 90, 70, 0.13);
  text-decoration: none;
}

/* MOBILE MENU -------------------------------------------------------------- */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #19704B;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 16px;
  padding: 4px 10px;
  border-radius: 12px;
  display: none;
  transition: background 0.19s;
  outline: none;
  z-index: 103;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #D7C9AA;
}
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(126, 185, 134, 0.13);
  background-blend-mode: lighten;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.7,0,.35,1), opacity .32s;
}
.mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #19B3AA;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 44px;
  height: 44px;
  margin: 26px 26px 0 0;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 12px #A1C18133;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #19704B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 50px 0 0 32px;
  width: 80vw;
  max-width: 95vw;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #19704B;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 0px 13px 8px;
  border-radius: 14px;
  background: transparent;
  transition: background 0.17s, color 0.17s;
  min-width: 140px;
  font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--earth1);
  color: #222E36;
}
.mobile-nav .cta-primary {
  background: #19B3AA;
  color: #fff !important;
  padding: 13px 30px;
  margin-top: 18px;
  font-size: 1.1em;
  text-align: center;
  align-self: flex-start;
}

/* Hide close on desktop */
@media (min-width: 1081px) {
  .mobile-menu,
  .mobile-menu-close {
    display: none !important;
  }
}

/* RESPONSIVE LAYOUT -------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 42px;
  }
  .hero {
    min-height: 210px;
    padding: 28px 0 24px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .latest-articles > .container > .content-wrapper > ul,
  .reviews > .container > .content-wrapper > ul,
  .review-list > .container > .content-wrapper > ul,
  .stories > .container > .content-wrapper > ul,
  .startup-profiles > .container > .content-wrapper > ul,
  .features > .container > .content-wrapper > ul,
  .values > .container > .content-wrapper > ul {
    flex-direction: column;
    gap: 14px;
  }
  .card,
  .latest-articles li,
  .review-list li,
  .stories li,
  .startup-profiles li,
  .features > .container > .content-wrapper > ul li,
  .values > .container > .content-wrapper > ul li {
    min-width: 0;
    width: 100%;
    flex: 1 1 99%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px;
    font-size: 1em;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 600px) {
  html, body {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* MICRO-INTERACTIONS + TRANSITIONS ----------------------------------------- */
button, .cta-primary {
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.15s, transform 0.18s, color 0.16s;
}
.latest-articles li, .card, .review-list li, .stories li, .startup-profiles li {
  transition: box-shadow 0.22s, transform 0.19s;
}
.latest-articles li:hover, .card:hover, .review-list li:hover, .stories li:hover, .startup-profiles li:hover {
  box-shadow: 0 6px 25px rgba(61, 109, 79, 0.11);
  transform: translateY(-3px) scale(1.02);
}

/* COOKIE BANNER ------------------------------------------------------------ */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #eaf6e5;
  color: #222E36;
  box-shadow: 0 -3px 21px #7EB98632;
  border-radius: 24px 24px 0 0;
  padding: 18px 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 28px;
  justify-content: space-between;
  font-size: 1.05rem;
  animation: cookiebanner-in 0.44s cubic-bezier(.47,1.64,.41,.82);
}
@keyframes cookiebanner-in {
  0% { opacity: 0; transform: translateY(60%); }
  80% { opacity: 1; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
#cookie-banner button {
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 10px 22px;
  margin: 0 4px;
  font-weight: 600;
  outline: none;
}
#cookie-banner .cookie-accept {
  background: #19B3AA;
  color: #fff;
  box-shadow: 0 2px 8px #A1C18168;
}
#cookie-banner .cookie-accept:hover,
#cookie-banner .cookie-accept:focus {
  background: #19704b;
}
#cookie-banner .cookie-reject {
  background: #ECEADD;
  color: #465046;
}
#cookie-banner .cookie-reject:hover,
#cookie-banner .cookie-reject:focus {
  background: #D7C9AA;
}
#cookie-banner .cookie-settings {
  background: transparent;
  color: #19704B;
  border: 1.3px solid #19B3AA;
  padding: 9px 19px;
}
#cookie-banner .cookie-settings:hover, #cookie-banner .cookie-settings:focus {
  background: #A1C18122;
}
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    font-size: 1em;
  }
}

/* COOKIE SETTINGS MODAL ---------------------------------------------------- */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(110,145,125,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
#cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
#cookie-modal .modal-content {
  background: #F6F7F9;
  color: #222E36;
  padding: 36px 28px 28px 28px;
  border-radius: 22px;
  box-shadow: 0 10px 42px #19704b25;
  min-width: 328px;
  max-width: 95vw;
  min-height: 220px;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modal-in 0.44s cubic-bezier(.35,1.64,.21,.92);
  position: relative;
}
@keyframes modal-in {
  0% { opacity: 0; transform: scale(.93) translateY(70px); }
  80% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 33px;
  height: 21px;
  border-radius: 11px;
  background: #D7C9AA;
  border: none;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .17s;
}
.cookie-toggle[aria-checked="true"] {
  background: #19B3AA;
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left .18s, background .18s;
  box-shadow: 0 1px 3px #46504618;
}
.cookie-toggle[aria-checked="true"]::before {
  left: 14px;
  background: #A1C181;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#cookie-modal button.cookie-modal-close {
  background: none;
  border: none;
  color: #19704B;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.16s;
}
#cookie-modal button.cookie-modal-close:hover, #cookie-modal button.cookie-modal-close:focus {
  background: #D7C9AA;
}
#cookie-modal .btn-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 24px;
}
#cookie-modal .btn-row button {
  border-radius: 18px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
}
#cookie-modal .cookie-accept {
  background: #19B3AA;
  color: #fff;
}
#cookie-modal .cookie-accept:hover,
#cookie-modal .cookie-accept:focus {
  background: #19704B;
}
#cookie-modal .cookie-reject {
  background: #ECEADD;
  color: #465046;
}
#cookie-modal .cookie-reject:hover,
#cookie-modal .cookie-reject:focus {
  background: #D7C9AA;
}

/* MISCELLANEOUS / UTILITY -------------------------------------------------- */
[hidden] { display: none !important; }

::-webkit-scrollbar {
  width: 12px; background: #eaf6e5;
}
::-webkit-scrollbar-thumb {
  background: #A1C181; border-radius: 7px;
}

/* PREVENT OVERLAPPING & SPACING ENFORCEMENT -------------------------------- */
.card, .testimonial-card, .section, .features > .container > .content-wrapper > ul li, .latest-articles li, .review-list li, .stories li {
  margin-bottom: 20px;
}
.section:last-child, .card:last-child, .testimonial-card:last-child, .features > .container > .content-wrapper > ul li:last-child, .latest-articles li:last-child, .review-list li:last-child, .stories li:last-child {
  margin-bottom: 0;
}
/* End of style.css */
