
      .marquee-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 2.5rem;
        background: #15803d;
      }
      .marquee-content {
        display: inline-block;
        white-space: nowrap;
        position: absolute;
        will-change: transform;
        animation: marquee 18s linear infinite;
        font-weight: bold;
        font-size: 1.125rem;
        color: #fff;
        left: 0;
        top: 0;
      }
      @keyframes marquee {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

  .benefits-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    margin-top: 4px;
  }

  .benefit-content h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
  }

  .benefit-content p {
    margin: 4px 0 0;
    font-size: 0.95em;
    color: #555;
  }

.centered-div {
    max-width: 7xl;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

/* Flexbox for satisfaction section */
.satisfaction-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .satisfaction-section {
        flex-direction: row;
    }
}



/* Left content */
.left-content {
    width: 100%;
}

@media (min-width: 640px) {
    .left-content {
        width: 50%;
    }
}

.left-content h2 {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

.left-content p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75;
    font-family: 'Roboto', sans-serif;
}

/* Right image */
.right-image {
    width: 100%;
}

@media (min-width: 640px) {
    .right-image {
        width: 50%;
    }
}

.right-image img {
    width: 20rem;
    height: 20rem;
}