        * {
            box-sizing: border-box;
        }


        .counter-container {
            font-family: 'Inter', Arial, sans-serif;
            display: flex;
            align-items: between;
            justify-content: space-between;
            background: #e5b500;
            padding: 15px;
            padding-left: 10%;
                        padding-right: 10%;
          gap:10px;
            text-align: center;
            width: 100%;
            flex-wrap: wrap;
        }

        .counter-info {
            font-family: 'Inter', Arial, sans-serif;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        .counter-box {
            font-family: 'Inter', Arial, sans-serif;
            display: flex;
            align-items: center;
          text-align: center;
          border: 1px solid black;
            padding: 8px;
            border-radius: 5px;
            font-size: 16px;
            min-width: 120px;
            justify-content: center;
        }

        .counter-icon {
                display: flex;
            font-family: 'Inter', Arial, sans-serif;
            margin-right: 5px;
        }

        .counter-display {
            font-family: 'Inter', Arial, sans-serif;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 5px;
            text-align: center;
            font-size: 18px;
        }

        .counter-numbers {
            font-family: 'Inter', Arial, sans-serif;
            display: flex;
            color: white;
            justify-content: center;
        }

        .counter-digit, .counter-digit2 {
            font-family: 'Inter', Arial, sans-serif;
            display: inline-block;
            width: 30px;
            height: 40px;
            text-align: center;
            background: black;
            color: white;
            padding: 5px;
            margin: 2px;
            font-size: 24px;
            line-height: 30px;
        }
        @media (max-width: 1200px) {
            .counter-container {
                            padding-left: 5%;
                        padding-right: 5%;

            }
        }
        /* 📱 Mobile (max-width: 600px) */
        @media (max-width: 600px) {
            .counter-container {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                            padding-left: 0%;
                        padding-right: 0%;

            }

            .counter-display {
                flex-direction: column;
                align-items: center;
                font-size: 14px;
            }

            .counter-digit, .counter-digit {
                width: 24px;
                height: 34px;
                font-size: 20px;
                line-height: 28px;
            }
        }