        body {
            font-family: Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #e5e8e8;
        }
        header {
            background-color: #0b3112;;
            color: #fff;
            padding: 10px 20px;
        }
        h1 {
            margin-top: 0;
            font-size: 22px;
        }
        section {
            padding: 20px;
        }
        footer {
            background-color: #0b3112;
            color: #fff;
            padding: 10px 20px;
            text-align: center;
        }
        
      
          

          
          #pareto-gif{
            width: 400px;
            height: auto;
          }


          #tutorial-list > li > a{
            font-size: 2rem;
          }


          /* Two-column layout for features + gif */
.features-row {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;

  display: grid;
  grid-template-columns: 1.2fr 1fr; /* tweak to 1fr 1fr if you want equal widths */
  gap: 2rem;
  align-items: start;
}

#rodop-plus-features ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

#pareto-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;     /* optional */
}

/* Stack on small screens */
@media (max-width: 820px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}


/* Feature list with icons */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;   /* space for the icon */
  margin: 0.6rem 0;
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}



/* 🔮 Later you can easily assign unique icons per feature */
.feature-explore::before { background-image: url("./images/map.svg"); }
.feature-speed::before   { background-image: url("./images/speed.svg"); }
.feature-deploy::before  { background-image: url("./images/rocket.svg"); }
.feature-multi::before   { background-image: url("./images/category.svg"); }
.feature-hybrid::before  { background-image: url("./images/tune.svg"); }





