/*
  Myriad Pro webfont is expected to be loaded separately (e.g., via Adobe Fonts).
  If unavailable, the font falls back to Arial, sans-serif.
*/

:root {
  --black: #333333;
  --green1: #00ad53;
  --green2: #6e9254;
  --green3: #bbd265;
  --orange: #ea983f;
  --white: #fff;
  --radius: 0.5rem;
  --shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

/* Base typography and layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

li {
  list-style: none;
}

/* Or for the whole list */
ul,
ol {
  list-style: none;
}

body {
  font-family: "Myriad Pro", Arial, sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--green1);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--green2);
  text-decoration: underline;
}

ul,
ol {
  padding-left: 1.25rem;
}

/* Navbar & Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.navbar {
  padding: 0.75rem 1rem;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--green1);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

/* Hero/Banner */
.hero {
  background-size: cover;
  background-position: center;
  color: var(--black);
  padding: 6rem 0;
  text-align: center;
}

.hero__title {
  font-size: 2.5rem;
}

.hero__subtitle {
  font-size: 1.25rem;
}

/* Cards */
.card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-color: var(--white);
  overflow: hidden;
}

.card__body {
  padding: 1.25rem;
}

/* Buttons */
.btn-custom {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn--primary {
  background-color: var(--green1);
  color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--green2);
}

.btn--secondary {
  background-color: var(--green3);
  color: var(--black);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--green2);
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--green1);
  color: var(--green1);
}

.btn--outline:hover,
.btn--outline:focus {
  background-color: var(--green1);
  color: var(--white);
}

.btn--disabled,
.btn--disabled:hover,
.btn--disabled:focus {
  background-color: #dcdcdc;
  border-color: #dcdcdc;
  color: #888;
  cursor: not-allowed;
}

/* Brand color overrides for Bootstrap primary utilities */
.text-primary {
  color: var(--green1) !important;
}

.btn-primary {
  background-color: var(--green1);
  border-color: var(--green1);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--green2);
  border-color: var(--green2);
}

.btn-outline-primary {
  color: var(--green1);
  border-color: var(--green1);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background-color: var(--green1);
  border-color: var(--green1);
}

/* Forms */
.form-label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--green1);
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 83, 0.25);
}

.form-check-input:checked {
  background-color: var(--green1);
  border-color: var(--green1);
}

.is-invalid {
  border-color: var(--orange);
}

.is-invalid ~ .invalid-feedback {
  color: var(--orange);
}

.is-valid {
  border-color: var(--green2);
}

.is-valid ~ .valid-feedback {
  color: var(--green2);
}

/* Alerts */
.alert {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.alert--info {
  background-color: #e8f8f1;
  color: var(--green1);
}

.alert--success {
  background-color: #eef9e7;
  color: var(--green2);
}

.alert--warning {
  background-color: #fff4e5;
  color: var(--orange);
}

.alert--error {
  background-color: #ffe9e9;
  color: #d9534f;
}

/* Modals */
.modal-custom .modal-content {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Badges */
.badge-custom {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 10rem;
  background-color: var(--green1);
  color: var(--white);
}

.badge--secondary {
  background-color: var(--green2);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--green1);
  color: var(--green1);
}

/* Tables */
.table-custom {
  width: 100%;
  border-collapse: collapse;
}

.table-custom th,
.table-custom td {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-custom th {
  background-color: var(--green3);
  color: var(--black);
}

/* Utility helpers */
.u-shadow {
  box-shadow: var(--shadow);
}

.u-rounded {
  border-radius: var(--radius);
}

.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0;
}
.u-mt-1 {
  margin-top: 0.25rem;
}
.u-mt-2 {
  margin-top: 0.5rem;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-1 {
  margin-bottom: 0.25rem;
}
.u-mb-2 {
  margin-bottom: 0.5rem;
}
.u-p-1 {
  padding: 0.25rem;
}
.u-p-2 {
  padding: 0.5rem;
}

.sbzee-footer {
  background: var(--white);
  color: var(--black);
  border-top: 2.5px solid var(--green1);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.sbzee-footer .footer-title,
.sbzee-footer .footer-legal-title {
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 0.5rem;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  font-size: 1.15rem;
}
.sbzee-footer .footer-links,
.sbzee-footer .footer-commitment {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.sbzee-footer .footer-links li,
.sbzee-footer .footer-commitment li {
  margin-bottom: 0.32em;
  text-align: left;
}
.sbzee-footer .footer-links {
  display: inline-block;
  text-align: left;
}
.sbzee-footer .footer-links a {
  color: var(--green2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.sbzee-footer .footer-links a:hover {
  color: var(--orange);
  text-decoration: underline;
}
.sbzee-footer .footer-logo {
  text-align: left;
  margin-bottom: 0.6rem;
}
.sbzee-footer .footer-managed {
  margin: 1.2em 0 0.5em 0;
  font-size: 0.96em;
}
.sbzee-footer .footer-legal {
  margin-top: 0.8em;
}
.sbzee-footer .footer-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 2.4rem 0 1.4rem 0;
}
.sbzee-footer .footer-connect {
  text-align: center;
}
.sbzee-footer .footer-socials a {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}
.sbzee-footer .footer-socials img {
  width: 27px;
  height: 27px;
  opacity: 0.82;
  transition: transform 0.18s, opacity 0.16s;
}
.sbzee-footer .footer-socials a:hover img {
  opacity: 1;
  transform: scale(1.13) rotate(-6deg);
}
.sbzee-footer .footer-disclaimer {
  margin: 1.2rem auto 0 auto;
  max-width: 700px;
  font-size: 0.98rem;
  color: #6d757d;
}
.sbzee-footer .footer-trademark {
  color: var(--green3);
  font-size: 0.94rem;
}
.sbzee-footer .footer-copyright {
  color: #999;
  margin-top: 0.7rem;
  font-size: 0.97rem;
}

/* Responsive layout for the footer columns */
@media (min-width: 768px) {
  .sbzee-footer .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    text-align: left;
  }
  .sbzee-footer .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 1rem;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .sbzee-footer .row {
    flex-direction: column !important;
    text-align: center;
  }
  .sbzee-footer .col-md-4 {
    max-width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  .sbzee-footer .footer-links,
  .sbzee-footer .footer-commitment {
    display: block;
    text-align: center;
    margin: 0 auto 1rem auto;
  }
  .sbzee-footer .footer-links li,
  .sbzee-footer .footer-commitment li {
    text-align: center;
  }
}
/* HOME PAGE CSS BELOW */

/* Hero Section */
.sbzee-hero {
  min-height: 680px;
  background: linear-gradient(135deg, #fff 60%, #e7ffe7 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sbzee-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
.sbzee-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-img-main img {
  max-width: 420px;
  box-shadow: 0 16px 40px 0 rgba(0, 173, 83, 0.13);
  border-radius: 32px;
  animation: heroImgFloat 4s ease-in-out infinite alternate;
}
@keyframes heroImgFloat {
  to {
    transform: translateY(-14px) scale(1.035);
  }
}
.hero-img-sm {
  max-width: 64px;
  margin: 0 0.5rem;
  opacity: 0.9;
  border-radius: 1rem;
}
.hero-highlight {
  color: var(--green1);
  background: linear-gradient(90deg, #bbd265 50%, #fff0 100%);
  border-radius: 0.4em;
  padding: 0 0.3em;
}
.sbzee-hero .btn-lg {
  font-size: 1.17rem;
  font-weight: 600;
}

/* Features & Difference Section */
.feature-card,
.difference-card,
.benefit-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(0, 173, 83, 0.06);
  transition: transform 0.17s, box-shadow 0.19s;
  position: relative;
}
.feature-card:hover,
.difference-card:hover,
.benefit-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 26px 0 rgba(0, 173, 83, 0.1);
}
.feature-icon,
.difference-icon {
  font-size: 2.4rem;
  color: var(--green1);
  filter: drop-shadow(0 2px 4px #bbd26544);
}
.difference-card h6,
.feature-card h5,
.benefit-card h6 {
  font-weight: 700;
  color: var(--green2);
}

/* CTA Section */
.bg-success-gradient {
  background: linear-gradient(98deg, var(--green1) 60%, var(--green2) 100%);
}
.sbzee-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-box {
  transition: transform 0.23s cubic-bezier(0.33, 1.23, 0.62, 1.12),
    box-shadow 0.19s;
}
.cta-box:hover {
  transform: translateY(-8px) scale(1.02) rotate(-2deg);
  box-shadow: 0 12px 32px 0 #00ad53;
}
.animate-float {
  animation: ctaFloat 4s cubic-bezier(0.33, 1.23, 0.62, 1.12) infinite alternate;
}
@keyframes ctaFloat {
  to {
    transform: translateY(-14px) scale(1.03) rotate(-2deg);
  }
}

/* Testimonials */
.sbzee-testimonials .testimonial-card {
  background: #f8f8f8;
  max-width: 450px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #bbd26522;
  margin-bottom: 2rem;
  min-height: 220px;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f6ec;
  object-fit: cover;
}
.testimonial-name {
  color: var(--green2);
  font-weight: 600;
  font-size: 1.02rem;
}

/* FAQ */
.sbzee-faqs .accordion-button:not(.collapsed) {
  color: var(--green1);
  background-color: #e8f8f1;
  font-weight: 600;
}
.sbzee-faqs .accordion-button {
  font-size: 1.08rem;
  font-weight: 500;
}
.sbzee-faqs .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #bbd26544;
}
.sbzee-faqs .accordion-body {
  font-size: 1.01rem;
  background: #fff;
}

/* Be A Partner CSS */

.partner-hero {
  min-height: 660px;
  background: linear-gradient(110deg, #f8fffa 65%, #e6f4fd 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.partner-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}
.partner-hero .hero-highlight-alt {
  color: var(--primary, #00ad53);
  background: linear-gradient(90deg, #e6f4fd 60%, #fff0 100%);
  border-radius: 0.45em;
  padding: 0 0.34em;
  font-size: 1.05em;
}
.partner-hero-img-box {
  display: inline-block;
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  animation: heroImgFloat 6s ease-in-out infinite alternate;
}
@keyframes heroImgFloat {
  to {
    transform: translateY(-18px) scale(1.04);
  }
}
.partner-hero-stats {
  font-size: 1.08rem;
  margin-top: 1.7rem;
  gap: 2.2rem;
}
.stat-label {
  color: #666;
  font-size: 0.98rem;
}
.stat-value {
  font-size: 1.17rem;
}
@media (max-width: 991px) {
  .partner-hero .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .partner-hero-img-box {
    margin-top: 2.8rem;
  }
}
@media (max-width: 600px) {
  .partner-hero .display-4 {
    font-size: 2.1rem;
  }
  .partner-hero-img-box {
    min-width: 90vw;
  }
}

/* Benefits Grid */
.partner-benefits .benefit-card {
  border-radius: 1.5rem;
  background: #fff;
  border: 1.2px solid #e6f4fd;
  box-shadow: 0 4px 22px 0 #e6f4fd90;
  transition: transform 0.17s, box-shadow 0.18s;
  position: relative;
}
.partner-benefits .benefit-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 32px 0 #00ad53;
}
.benefit-icon {
  font-size: 2.2rem;
  color: var(--primary, #00ad53);
}

/* Steps */
.partner-steps .step-card {
  border-radius: 1.3rem;
  background: #f8f9fa;
  border: 1px solid #e6f4fd;
  box-shadow: 0 2px 10px 0 #e6f4fd60;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
}
.partner-steps .step-card:hover {
  box-shadow: 0 8px 32px 0 #00ad53;
  transform: translateY(-6px);
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(120deg, #00ad53 50%, #e6ffd5 100%);
  color: var(--primary, #00ad53);
  font-weight: 800;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 0.7rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 #00ad5320;
}

/* Requirements */
.partner-requirements .requirements-list li {
  margin-bottom: 1rem;
  font-size: 1.13rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Testimonials */
.partner-testimonials .testimonial-box {
  background: #f8f8ff;
  max-width: 430px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #e6f4fd40;
  margin-bottom: 2rem;
  min-height: 160px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f4fd;
  object-fit: cover;
}

/* Accordion/FAQ */
.partner-faqs .accordion-button:not(.collapsed) {
  color: var(--primary, #00ad53);
  background-color: #e6f4fd;
  font-weight: 600;
}
.partner-faqs .accordion-button {
  font-size: 1.07rem;
  font-weight: 500;
}
.partner-faqs .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e6f4fd;
}
.partner-faqs .accordion-body {
  font-size: 1.01rem;
  background: #fff;
}

/* empowering Farmer Page */

:root {
  --green-2: #6e9254;
  --green-3: #bbd265;
}
.text-green-2 {
  color: var(--green-2);
}

/* Hero */
.farmers-hero {
  min-height: 640px;
  background: linear-gradient(120deg, #fff 65%, #e7ffe7 100%);
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.farmers-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.11;
  pointer-events: none;
}
.farmers-hero .hero-highlight-green {
  color: var(--green-2);
  background: linear-gradient(90deg, #bbd26533 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.farmers-hero .farmers-badge {
  background: #e7ffe7;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.05rem;
  padding: 0.45em 1.4em;
  font-weight: 600;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 5px #bbd26522;
}
.hero-main-img {
  width: 350px;
  max-width: 96vw;
  border-radius: 2em;
  box-shadow: 0 8px 32px #6e925433;
}
.hero-deco-top {
  position: absolute;
  top: -24px;
  left: 10%;
  width: 82px;
  opacity: 0.16;
  z-index: 1;
}
.hero-deco-bottom {
  position: absolute;
  bottom: -24px;
  right: 12%;
  width: 66px;
  opacity: 0.18;
  z-index: 1;
}

/* Eco Cards */
.eco-card {
  background: #f8f9fa;
  border-radius: 1.5rem;
  border: 1.2px solid #e6f4fd;
  box-shadow: 0 3px 14px #e6f4fd70;
  transition: box-shadow 0.17s, transform 0.18s;
  min-height: 270px;
}
.eco-card:hover {
  box-shadow: 0 8px 28px 0 #bbd26533;
  transform: translateY(-8px) scale(1.025);
}
.eco-icon {
  color: var(--green-2);
  font-size: 2.3rem;
}

/* Trust/Eco BG */
.eco-bg {
  background: linear-gradient(110deg, #e7ffe7 80%, #f5ffe6 100%);
}
.trust-list > div {
  background: #fff;
  border-radius: 2em;
  padding: 0.7em 1.5em;
  box-shadow: 0 1px 6px #bbd26533;
  margin: 0.3em;
  color: var(--green-2);
  font-size: 1.07rem;
}

.testimonial-box {
  background: #e7ffe7;
  max-width: 480px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #bbd26522;
  margin-bottom: 2rem;
  min-height: 180px;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f8f9fa;
  object-fit: cover;
}
.testimonial-name {
  color: var(--green-2);
  font-weight: 600;
}

/* Steps */
.step-eco-card {
  border-radius: 1.3rem;
  background: #fff;
  border: 1px solid #e6f4fd;
  box-shadow: 0 2px 10px 0 #bbd26540;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.step-eco-card:hover {
  box-shadow: 0 7px 22px #bbd26533;
  transform: translateY(-7px) scale(1.03);
}
.step-eco-icon {
  color: var(--green-2);
  background: #e7ffe7;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8em auto;
  font-size: 2.2rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .farmers-hero h1 {
    font-size: 2.2rem;
  }
  .hero-main-img {
    width: 92vw;
  }
}

/* sustainibility CSS */

:root {
  --green: #00ad53;
  --green-2: #6e9254;
  --green-3: #bbd265;
}
.text-green {
  color: var(--green);
}

.sustain-hero {
  min-height: 580px;
  background: linear-gradient(115deg, #e7ffe7 80%, #e6ffd5 100%);
  position: relative;
  align-items: center;
  justify-content: center;
}
.sustain-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}
.sustain-leaf-top {
  position: absolute;
  top: -26px;
  left: 6%;
  width: 86px;
  opacity: 0.16;
  z-index: 1;
}
.sustain-leaf-btm {
  position: absolute;
  bottom: -20px;
  right: 7%;
  width: 62px;
  opacity: 0.16;
  z-index: 1;
}
.sustain-highlight {
  color: var(--green);
  background: linear-gradient(90deg, #bbd26533 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.sustain-hero-img {
  width: 340px;
  max-width: 98vw;
  border-radius: 1.6em;
  box-shadow: 0 8px 36px #bbd26544;
}
.sustain-badge {
  background: #bbd26533;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.07rem;
  padding: 0.5em 1.5em;
  font-weight: 600;
  margin-bottom: 0.7em;
  box-shadow: 0 1px 6px #bbd26515;
}
.sustain-list li {
  margin-bottom: 1.3em;
}
.sustain-card {
  border-radius: 1.3em;
  background: #fff;
  border: 1.5px solid #e6f4fd;
  box-shadow: 0 2px 12px #bbd26522;
  transition: box-shadow 0.18s, transform 0.15s;
}
.sustain-card:hover {
  box-shadow: 0 9px 30px 0 #bbd26545;
  transform: translateY(-6px) scale(1.04);
}
.sustain-icon {
  color: var(--green);
  background: #e7ffe7;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1em auto;
}
.eco-bg {
  background: linear-gradient(100deg, #e7ffe7 70%, #f5ffe6 100%);
}
.commitment-list li {
  margin-bottom: 1.1em;
  text-align: center;
}
.sustain-why-card {
  border-radius: 1.1em;
  background: #e7ffe7;
  font-size: 1.1rem;
  color: var(--green-2);
  box-shadow: 0 2px 8px #bbd26522;
  font-weight: 600;
  margin-bottom: 1em;
}
.sustain-reason-img {
  width: 260px;
  max-width: 80vw;
}
@media (max-width: 600px) {
  .sustain-hero h1 {
    font-size: 2rem;
  }
  .sustain-hero-img {
    width: 92vw;
  }
}

/* About us page */
.about-hero {
  min-height: 580px;
  background: linear-gradient(112deg, #f7f8fd 70%, #e7ffe7 100%);
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-highlight {
  color: var(--green);
  background: linear-gradient(90deg, #bbd26533 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.about-hero-img {
  width: 340px;
  max-width: 97vw;
  border-radius: 1.5em;
  box-shadow: 0 6px 30px #bbd26522;
}
.about-badge {
  background: #bbd26533;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.09rem;
  padding: 0.55em 1.7em;
  font-weight: 600;
  margin-bottom: 0.7em;
  box-shadow: 0 1px 6px #bbd26515;
}
.about-story-img,
.about-team-img,
.about-neo-img {
  width: 300px;
  max-width: 94vw;
  border-radius: 1.2em;
  box-shadow: 0 4px 22px #bbd26522;
}
.about-team-list li,
.about-neo-list li {
  margin-bottom: 0.7em;
}
.about-mission-card {
  border-radius: 1.3em;
  background: #fff;
  border: 1.3px solid #e6f4fd;
  box-shadow: 0 2px 11px #bbd26522;
  margin-bottom: 1em;
  font-size: 1.09rem;
  min-height: 150px;
}
.about-diff-card {
  border-radius: 1.1em;
  background: #e7ffe7;
  font-size: 1.05rem;
  color: var(--green-2);
  box-shadow: 0 1.5px 6px #bbd26522;
  font-weight: 600;
  margin-bottom: 1em;
}
.about-product-logo {
  width: 56px;
  height: 48px;
  object-fit: contain;
}
.product-carousel-card {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 2px 13px #bbd26533;
  min-height: 180px;
  max-width: 370px;
}
.about-cta {
  background: linear-gradient(90deg, #e7ffe7 70%, #f7f8fd 100%);
}
@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero-img {
    width: 92vw;
  }
}
