body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
        }

        .banner-wrapper {
            width: 100%;
            background: white;
            padding: 20px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .banner-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 20px;
        }

        .price-card {
            display: flex;
            align-items: center;
            background-color: #f0f0f0;
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            min-width: 200px;
            max-width: 250px;
        }

        .refe{
            
            font-size: 8px;
            padding-top: 10px;
            text-align: center;
        }
        .refe a {
            text-decoration: none;
            color: #555;
        }

        .price-card:hover {
            transform: translateY(-5px);
        }

        .price-card img {
            width: 40px;
            height: 40px;
            margin-right: 15px;
        }

        .currency-text {
            font-size: 12px;
            font-weight: bold;
            color: #333;
            margin: 0;
            word-wrap: break-word;
            hyphens: auto;
        }

        @media (max-width: 768px) {
            .banner-container {
                flex-direction: column;
                gap: 15px;
            }

            .price-card {
                width: 100%;
                max-width: none;
            }

            .currency-text {
                font-size: 16px;
            }
        }