.mcd-wrapper {
            /* max-width: 1100px; */
            margin: auto;
            background: #e5e5e5;
            padding: 30px 60px;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 28px;
        }

        .grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .card {
            flex: 1;
            min-width: 280px;
            background: #fafafa;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .card:not(:last-of-type) {
            margin-bottom: 0 !important;
        }

        .card h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .card p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .download-btn {
            display: inline-block;
            margin-bottom: 15px;
            padding: 10px 16px;
            background: #f9b233;
            color: black;
            font-weight: bold;
            text-decoration: none;
            border-radius: 6px;
            text-align: center;
            width: fit-content;
        }

        .card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-top: auto;
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0 0 30px;
        }

        .btn-group a {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 0 10px;
            border-radius: 6px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .telegram {
            background: #0088cc;
        }

        .whatsapp {
            background: #25d366;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 24px;
            }

            .grid {
                flex-direction: column;
            }

            .card {
                width: 100%;
            }

            .btn-group a {
                width: 100%;
            }
        }