:root {
  /* Primary Colors */
  --primary-dark-green: #2e7d32;
  --primary-light-green: #1b5e20;

  /* Text Colors */
  --text-white: #ffffff;
  --text-dark-green: #2e7d32;

  /* Accent / CTA */
  --accent-wheat: #f9a825;
  --accent-gold: #ffca28;

  /* Section Backgrounds */
  --bg-light-cream: #c3c3c3;
  --bg-card: #ffffff;
  --bg-footer: #1b5e20;

  /* Borders / Shadow */
  --border-light: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
}
* {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
  margin: 0;
}
a {
  text-decoration: none;
}
.mt-40 {
  margin-top: 40px;
}
.pt-top {
  padding-top: 32px;
}
.heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark-green);
  line-height: 52px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.main-heading {
  font-size: 40px;
  line-height: 44px;
  color: var(--text-dark-green);
  font-weight: 700;
}

.main-text {
  font-size: 16px;
  line-height: 111%;
  color: #072509;
  font-weight: 400;
}
.button.flex {
  display: flex;
  justify-content: center;
}

img {
  border-radius: 12px;
}
.button .btn-cus{
  background: var(--accent-gold);
  color: #072509;
  padding: 10px 28px;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
}

.button .btn-cus:hover{
  box-shadow: 0 0 15px var(--accent-gold),
              0 0 25px var(--accent-gold);
}

.card-heading {
  font-size: 20px;
  line-height: 22px;
  color: #1b5e20;
  margin: 0;
}

.mt-12 {
  margin-top: 12px;
}

.slick-dots li button:before {
  font-size: 14px !important;
}
.slick-dots li {
  width: 20px !important;
  margin: 0 !important;
}

.bg-block {
  background-color: var(--bg-card);
}
.border {
  border: 1px solid var(--primary-light-green);
}

.slick-dots {
  bottom: -30px !important;
}
