 .spacer {
            height: 700px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }
        
        .benefit-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-container {
            position: relative;
            z-index: 1;
        }
        
        .mobile-frame {
            width: 224px;
            height: 440px;
            background-color: #222;
            border-radius: 36px;
            position: relative;
            padding: 10px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: visible;
        }
        
        .mobile-screen {
            width: 100%;
            height: 100%;
            background-color: #fff;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-notch {
            position: absolute;
            width: 80px;
            height: 12px;
            background-color: #222;
            top: 0;
            z-index: 99;
            left: 50%;
            transform: translateX(-50%);
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        
        .benefit-box {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            position: absolute;
            width: 330px;
            background-color: #fff;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: scale(0);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        opacity 0.8s ease-out;
            z-index: 10;
            border-left: 4px solid #e52b2b;
        }
        
        .benefit-box.animate {
            transform: scale(1);
            opacity: 1;
        }
        
        .benefit-icon {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background-color: #fff;
            border: 2px solid #e52b2b;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #e52b2b;
        }
        
        .benefit-title {
            font-size: 18px;
            font-weight: bold;
            color: #34495e;
            margin-bottom: 8px;
        }
        
        .benefit-text {
            font-size: 14px;
            color: #7f8c8d;
        }
        
        /* Position the benefit boxes around the mobile */
        .benefit-box:nth-child(1) {
            top: -220px;
            left: 0;
            transform: translateX(-50%) scale(0);
            transition-delay: 0.1s;
        }
        
        .benefit-box:nth-child(1).animate {
            transform: translateX(-50%) scale(1);
        }
        
        .benefit-box:nth-child(2) {
               top: 40px;
                left: -350px;
                transition-delay: 0.2s;
        }
        
        .benefit-box:nth-child(3) {
               bottom: 50px;
    left: -350px;
    transition-delay: 0.3s;
        }
        
        .benefit-box:nth-child(4) {
           right: -345px;
    top: unset;
    transform: translateX(50%) scale(0);
    transition-delay: 0.4s;
        }
        
        .benefit-box:nth-child(4).animate {
            transform: translateX(50%) scale(1);
        }
        
        .benefit-box:nth-child(5) {
           top: 45px;
    right: -350px;
    transition-delay: 0.5s;
        }
        
        .benefit-box:nth-child(6) {
            bottom: 50px;
    right: -363px;
    transition-delay: 0.6s;
        }

        .benefit-box:nth-child(7) {
            top: unset;
    left: -520px;
    transition-delay: 0.6s;
        }

        .benefit-box:nth-child(8) {
           bottom: 156px;
    right: -427px;
    transition-delay: 0.5s;
        }
        
        .benefit-box:nth-child(9) {
               top: 145px;
    right: -420px;
    transition-delay: 0.6s;
        }

        .benefit-box:nth-child(10) {
           bottom: 161px;
    left: -450px;
    transition-delay: 0.6s;
        }
        .benefit-box:nth-child(11) {
           top: 140px;
    left: -450px;
    transition-delay: 0.6s;
        }
        
        .instructions {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 16px;
        }
        
        .app-screen {
            /* padding: 10px; */
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        
        .app-header {
            display: flex;
            justify-content: space-between;
            padding: 5px;
            font-size: 12px;
        }
        
        .app-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            padding: 15px 10px;
        }
        
        .app-box {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 15px;
        }
        
        .app-box-title {
            font-size: 12px;
            color: #777;
        }
        
        .app-box-value {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .app-box-red {
            color: #e52b2b;
        }
        
        .app-box-green {
            color: #0bb25c;
        }
        
        .app-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .app-stat-box {
            width: 48%;
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 8px;
        }
        
        .chart-container {
            margin-top: 15px;
            height: 100px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }
        
        .chart-bar {
            width: 12%;
            background: linear-gradient(to top, #0bb25c, #7BE495);
            border-radius: 6px 6px 0 0;
        }
        
        .chart-bar:nth-child(2n) {
            background: linear-gradient(to top, #e52b2b, #FF9A9A);
        }
        
        .app-footer {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #eee;
        }
        
        .app-footer-icon {
            width: 20px;
            height: 20px;
            background-color: #ddd;
            border-radius: 5px;
        }   

          @media (max-width: 768px) {

.benefit-container{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
    display: flex;
    gap:10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.benefit-box {

position: unset;}

.benefit-box:nth-child(4).animate {
    transform: translateX(0%) scale(1) !important;
}

.spacer {
    height: unset;
}

          }