* {
                margin: 0;
                padding: 0; 
            box-sizing: border-box;
        }   

        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .header {
            background-color: #c40000; /* Red Background */
            padding: 10px 20px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: auto;
        }

        .logo img {
            width: 171px;
            height: 63px;
            object-fit: contain;
        }

        .header-text {
            text-align: right;
            color: white;
        }

        .header-text h1 {
            margin: 0;
            font-size: 20px;
            font-weight: bold;
        }

        .header-text p {
            margin: 3px 0 0;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            .header-text {
                text-align: center;
                margin-top: 10px;
            }

            .logo img {
                width: 140px;
                height: auto;
            }
        }
        .price-container {
  text-align: center;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.old-price {
  color: #ff0000; /* Red color */
  text-decoration: line-through;
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.new-price {
  color: #2e7d32; /* Green color */
  font-size: 36px;
  font-weight: bold;
  display: block;
}