.promo-card {
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            width: 100%;
            text-align: start;
            margin: auto;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .promo-card h2 {
            margin-top: 0;
            font-size: 20px;
            color: #1a1a1a;
        }

        .promo-card p {
            color: #555;
            margin: 15px 0;
            line-height: 1.5;
            font-size: 14px;
        }

        .promo-buttons {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .promo-buttons a {
            padding: 10px 30px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            flex:1;
            text-align:center;
        }

        .promo-buttons .shopee {
            background-color: #ff5722;
        }

        .promo-buttons .blibli {
            background-color: #1a4bff;
        }

        .promo-buttons .tokopedia {
            background-color: #00b14f;
        }

        .promo-note {
            color: #111;
            text-align: center;
        }

        .promo-container {
            display: flex;
            flex-wrap: nowrap;
            gap: 1rem;
        }

        .promo-image img {
            width: 125px !important;
            height: 125px !important;
            object-fit: cover !important;
            max-width: max-content !important;
        }

        @media only screen and (max-width: 425px) {
        .promo-container {
            flex-wrap: wrap !important; 
        }
        .promo-image img {
            width: 100% !important;
            height: auto !important;
        }
  }