        .download-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding:80px;
            gap: 120px;
            flex-wrap: wrap;
        }

        .boxed {
            margin-top: 20px;
            border-radius: 15px;
            border: navajowhite;
        }

      

        .app-title {
            text-align: center;
            color:#3f3e3e;
            font-size: 1.5rem;
            font-weight: 600;
        }

        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            width: 200px;
            height: 370px;
        }

        .red-circle {
            position: absolute;
            width: 350px;
            height: 350px;
            background-color: #f3154e;
            border-radius: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            top: 200px;
        }

        .content h3 {

            font-weight: bold;
        }

        .content h1 span {
            display: block;
            font-size: 1.5rem;
            color: #333;
            margin-top: 4px;
        }

        .content p {
            margin: 8px 0;
            color: #777;
            line-height: 1.5;
        }

        /* QR and Buttons */
        .qr-and-buttons {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            justify-content: center;
        }

        .qr-code {
            width: 120px;
            height: 125px;
        }

        .buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn {
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: var(--fw-bold);
            text-decoration: none;
            color: white;
            transition: all 0.3s;
            width: max-content;
        }

        .btn.green {
            background-color: var(--primary-color);
        }

        .btn.green:hover {
            background-color: var(--primary-color);
        }

        .btn.gray {
            background-color: #7f8c8d;
        }

        .btn.gray:hover {
            background-color: #636e72;
        }

        .buttons {
            display: flex;
            flex-direction: column;
            gap: 28px;

            padding: 0px 18px;
            position: relative;
        }

        .qr-code {
            width: 185px;
            height: 185px;
        }

        .white-circle {
            border: solid 1px #c2c2c2;
            width: 300px;
            position: absolute;
            border: solid 3px var(--primary-color);
            border-radius: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            top: 200px;
            height: 300px;
        }

        .red-circle {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            top: 200px;
            background: #ebebeb;
            /* background: linear-gradient(358deg, rgba(0, 89, 74, 0.6) 50%, rgba(201, 190, 88, 0.6) 100%); */
        }

        .content {
            max-width: 710px;
            position: relative;
            border-left: solid 1px #c2c2c25e;
            padding-left: 70px;
        }

        .content::before {
            content: "";
            width: 10px;
            height: 10px;
            background: #c2c2c25e;
            position: absolute;
            border-radius: 5px;
            left: -5px;
            top: -10px;
        }

        .content::after {
            content: "";
            width: 10px;
            height: 10px;
            background: #c2c2c25e;
            position: absolute;
            border-radius: 5px;
            left: -5px;
            bottom: -10px;
        }

        .card__scan {
            font-size: 10.5px;
            letter-spacing: .1em;
            text-transform: uppercase;
            text-align: center;
            margin: 0 0 14px;
        }

        .card__qr {
            margin: 0 auto;
            width: 150px;
            height: auto;
            display: block;
        }

        .qr_card {

            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
            background: #fff;
            border: 1px solid #c2c2c2;
            border-radius: 4px;
            padding: 18px 18px 16px;
            transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;

        }

        .card__store {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: #cc8328;
            color: #fff;
            border-radius: 3px;
            padding: 8px;
            width: 250px;
        }

        .card__qr>img {
            width: 100%;
            height: 100%;
        }

        .card__store>svg {
            width: 18px;
        }

        @media (max-width: 992px) {
            .download-section {
                flex-direction: column-reverse;
                padding: 20px !important;
                gap: 40px;
            }

            .content {
                border-left: none !important;
                padding-left: 0 !important;
            }

            .content::before,
            .content::after {
                display: none !important;
            }
        }