 /* Global Styles */
  body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
  }
  
  /* Main wrapper for consistent background */
  .page-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
  }
  
  .section {
    padding: 60px 20px;
    position: relative;
  }
  
  .container {
    max-width: 1175px;
    margin: 0 auto;
  }
  @media(max-width: 1367px){
    .container {
      max-width: 96%;
      margin: 0 auto;
    }
  }
@media(max-width: 1600px) and (min-width: 1300px){
  .page-wrapper {
  	width: 1240px;
  }
}
  h2.section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }
  
  h2.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #99C555;
  }
  
  .button_dark {
    background: #99C555;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .button_dark:hover {
    background: #86b046;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  /* Features Section */
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .feature-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
  }
  @media(min-width: 1024px) and (max-width: 1366px){
      .feature-card {
        flex: 1 1 200px;
      }
  }
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
  }
  
  .feature-card p {
    margin-bottom: 10px;
    color: #555;
  }
  
  /* How It Works Section */
  .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .step-card {
    flex: 1 1 180px;
    max-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #99C555;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .step-card h3 {
    margin-top: 10px;
    font-size: 1.3em;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
  }
  
  /* Mobile Layout */
  @media (max-width: 768px) {
    .page-wrapper {
      width: 95%;
    }

    .section {
      padding: 40px 15px;
    }
    
    .feature-card, .step-card {
      margin-bottom: 20px;
    }
  }

  /* Original slider styles */

div#comparison figure > img { 
  position: relative;
  width: 100%;
}

#comparison {
  position: relative;
  overflow: hidden;
}

#comparison .label {
  position: absolute;
  bottom: 40px;
  padding: 6px 12px;
  font-size: 1em;
  font-weight: 600;
  color: #333;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
#comparison .label.before { right: 30px; }
#comparison .label.after { left: 30px; }

#comparison input[type="range"] {
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

#comparison input[type="range"]::-webkit-slider-runnable-track,
#comparison input[type="range"]::-moz-range-track {
  height: 48px;
  background: transparent;
  border: none;
}

#comparison input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("https://buffandrinse.com/style/images/left-and-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  border: none;
  cursor: ew-resize;
}

#comparison input[type="range"]::-moz-range-thumb {
  appearance: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("https://buffandrinse.com/style/images/left-and-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  border: none;
  cursor: ew-resize;
}

div#comparison figure { 
  background-size: cover;
  position: relative;
  font-size: 0;
  width: 100%; 
  height: 100%;
  margin: 0; 
}
div#comparison figure > img { 
  position: relative;
  width: 100%;
}
div#comparison figure div { 
  background-size: cover;
  position: absolute;
  width: 50%; 
  box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
  overflow: hidden;
  bottom: 0;
  height: 100%;
}
.textcolumn {
	flex: 1 1 400px;
    padding: 30px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
	
}