* {
                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;
            }
        }
