/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 04 2026 | 05:17:42 */
    /* Core Structural Settings */
.smcc-benefits-section {
  padding: 5rem 1.5rem;
  background-color: #f8faf9; /* Soft, clean green-tinted white */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.smcc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Master Grid Structure */
.smcc-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Left Content Styles */
.smcc-pretitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2e722f; /* Brand Green */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.smcc-section-title {
  font-size: 2.5rem;
  color: #112a12;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

/* Benefit Card Micro-layouts */
.smcc-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.smcc-benefit-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.smcc-icon-wrapper {
  background-color: rgba(46, 114, 47, 0.08);
  color: #2e722f;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.smcc-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.smcc-benefit-card:hover .smcc-icon-wrapper {
  background-color: #2e722f;
  color: #ffffff;
}

.smcc-benefit-text h3 {
  font-size: 1.15rem;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  font-weight: 700;
}

.smcc-benefit-text p {
  font-size: 0.95rem;
  color: #555555;
  margin: 0;
  line-height: 1.5;
}

/* Right Image Layout */
.smcc-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.smcc-featured-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.smcc-image-frame:hover .smcc-featured-img {
  transform: scale(1.02);
}

/* Bottom Integrated Banner */
.smcc-commitment-banner {
  background-color: #143015; /* Dark forest brand green */
  border-radius: 24px;
  padding: 2.5rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(20, 48, 21, 0.15);
}

.smcc-banner-tag {
  display: inline-block;
  background-color: rgba(230, 179, 38, 0.15);
  color: #e6b326; /* Brand Deep Gold */
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.smcc-commitment-statement {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Motto Pill Badges */
.smcc-banner-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.smcc-motto-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
}

.smcc-motto-badge.primary {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.smcc-motto-badge.accent {
  background-color: rgba(230, 179, 38, 0.1);
  border: 1px solid rgba(230, 179, 38, 0.2);
  color: #e6b326;
}

.motto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e6b326;
  display: inline-block;
}

.smcc-motto-badge.primary .motto-dot {
  background-color: #2e722f;
}

/* Dynamic Responsive Breakpoints */
@media (min-width: 992px) {
  .smcc-main-grid {
    grid-template-columns: 1.1fr 0.9fr; /* Perfect split desktop ratio */
    gap: 5rem;
  }
  
  .smcc-section-title {
    font-size: 3rem;
  }

  .smcc-commitment-banner {
    grid-template-columns: 1.3fr 0.7fr; /* Keeps banners inline horizontally on desktop */
    padding: 3rem 4rem;
    gap: 4rem;
  }
}