    .success-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }
    .success-content {
        min-width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    @media (min-width: 768px) {
    .story-image {
        width: 635px;
        height: 420px;
        margin-right: 20px;
    }
    .story-text {
        width: 30%;
        height: auto;
    }
}
@media (max-width: 750px) and (min-width: 350px) {
    .success-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center; /* Optional: center-align text */
    }
  
    .story-image {
      width: 100%;
      height: auto;
      margin: 0 0 10px 0; /* space below image */
    }
  
    .story-text {
      width: 100%;
    }
  }
    .story-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .story-description {
        font-size: 16px;
        line-height: 1.5;
    }
    .read-more {
        display: inline-block;
        margin-top: 10px;
        color: white;
        text-decoration: none;
        font-weight: bold;
    }
    .arrow-buttons {
        text-align: center;
        margin-top: 20px;
    }
    .arrow-button {
        font-size: 30px;
        color: white;
        cursor: pointer;
        margin: 0 10px;
        display: none;
    }
    .success-dots {
        text-align: center;
        margin-top: 10px;
    }
    .success-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 5px;
        background-color: gray;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0.3;
    }
    .success-dot.active {
        background-color: white;
        opacity: 1;
    }
    .success-dot.adjacent {
        background-color: lightgray;
        opacity: 0.5;
    }


@media (max-width: 768px) {
@media (max-width: 768px) {
    .success-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .story-image {
        width: 100%;
        max-width: 90%;
        height: auto;
        margin: 0 auto 20px auto;
    }

    .story-text {
        width: 100%;
    }

    .story-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .story-description {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .start_now_button,
    .read-more {
        font-size: 14px;
        padding: 10px 15px;
        margin-top: 15px;
        display: inline-block;
    }

    .arrow-button {
        font-size: 24px;
        margin: 0 5px;
    }

}
