/* Full-bleed section styles with negative margins to eliminate gaps */
.full-bleed-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
  left: 0;
  right: 0;
  padding: 60px 0;
  overflow: hidden;
  /* Remove top/bottom margins to prevent gaps */
  margin-top: -1px;
  margin-bottom: -1px;
}

/* Fix for HubSpot module spacing */
.page-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix for HubSpot row spacing */
.row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix for HubSpot column spacing */
.span12, .span6, .span4, .span3 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Container for content */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* Background styles */
.bg-pioneer-accent {
  background-color: #d1e7dd;
  color: #1b4d3e;
}

.bg-pioneer-dark {
  background-color: #1b4d3e;
  color: white;
}

.bg-white {
  background-color: white;
  color: #1b4d3e;
}

/* Background image overlay */
.bg-forest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://www.example.com/images/forest-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.bg-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #1b4d3e, rgba(27, 77, 62, 0.95));
  z-index: 2;
}

/* Typography */
.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Card styles */
.card {
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-dark {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-light {
  background-color: white;
  border: 2px solid rgba(27, 77, 62, 0.3);
}

/* Icon styles */
.icon {
  margin-bottom: 16px;
}

/* Button styles */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 16px 32px;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.btn-white {
  background-color: white;
  color: #1b4d3e;
  border-color: white;
}

.btn-primary {
  background-color: #1b4d3e;
  color: white;
  border-color: #1b4d3e;
}

/* List styles */
.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.check-list li span:first-child {
  display: inline-block;
  margin-right: 10px;
}

.check-list li span:last-child {
  font-weight: 500;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Additional fix for HubSpot's default spacing */
.hs-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix for HubSpot's widget containers */
.widget-span {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force sections to touch with no gap */
.full-bleed-section + .full-bleed-section {
  margin-top: -1px;
}
<!-- Add this CSS to your HubSpot Custom CSS file -->
<style>
/* Mobile responsiveness for tables */
@media (max-width: 767px) {
  /* Force table to not be like tables on mobile */
  .responsive-table, 
  .responsive-table tbody, 
  .responsive-table tr, 
  .responsive-table td {
    display: block !important;
    width: 100% !important;
    clear: both !important;
  }
  
  /* Set full width for table cells on mobile */
  .responsive-table td {
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
  }
  
  /* Hide empty cells */
  .responsive-table td:empty {
    display: none !important;
  }
  
  /* Adjust spacing for mobile */
  .responsive-table td > div {
    margin-bottom: 20px !important;
  }
}
/* Reduced padding for the dark section */
.full-bleed-section.bg-pioneer-dark .section-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Update your existing section-extra-padding class with reduced padding */
.section-extra-padding {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}