:root {
            --black: #121212;
            --white: #fff;
            --primary: #f57322; /* Vibrant Orange */
            --secondary: #341a35; /* Dark Purple */
            --light-blue: #e8fcf9; 
            --border-width: 3px;
            --hard-shadow: 6px 6px 0px #000000;
        }

        body {
            background-color: var(--light-blue);
            /* background-image: url('images/water-texture.avif'); */
            background-blend-mode: multiply;
            font-family: 'Basic Sans', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: var(--black);
        }

        .container {
            padding: 0 2rem;
        }

        h1 {
            font-weight: 600;
            font-size: 2.6rem;
            line-height: 2.6rem;
            margin: 1rem 0;
            text-wrap: balance;

            @media (max-width: 768px) {
                font-size: 2.4rem;
                line-height: 2.4rem;
            }
        }

        h2 {
            font-weight: 600;
            font-size: 1.5rem;
            margin-top: 0rem;
        }

        h3 {
            font-weight: 600;
            font-size: 1.2rem;
            
        }

        .brand-name {
            font-family: 'Courier Prime', monospace;
            font-weight: 700;
            display: block;
            position: relative;
            z-index: 0; 
        }

        .brand-name::before {
            content: ""; /* Required for pseudo-elements to render */
            
            background-image: url(images/bum.png);
            background-size: 20px 20px;
            background-repeat: no-repeat;
            
            position: absolute;
            top: -8px;  
            left: -8px; 
            
            /* Define the size of the image area explicitly */
            width: 20px; 
            height: 20px;
            
            /* 4. Ensure the image sits behind the text */
            z-index: -1;
        }

        .highlight-yellow {
            background-color: #ffdd57;
            font-weight: 700;
            display: inline-block;
            padding: 0.1em 0.4em;
            margin-left: -18px;
            transform: skew(10deg);
            transform: rotate(3deg);
            margin-top: -5px;
            mix-blend-mode: multiply;
        }
        .highlight-orange {
            background-color: var(--primary);
            font-weight: 700;
            display: inline-block;
            padding: 0.1em 0.4em;
            margin-left: -18px;
            color: #fff;
            transform: skew(-10deg);
            transform: rotate(-3deg);
            margin-top: -5px;
            mix-blend-mode: multiply;
        }

        .logo-container img {
            padding-right: 2rem;
            margin-top: 1rem;

            @media (max-width: 768px) {
                padding-right: 1rem;
                margin-top: 0.5rem;
            }
        }

        footer {
            padding-bottom: 3rem;
        }

        .form-label {
            font-weight: 600;
            font-family: 'Courier New', Courier, monospace;
        }

        .btn-primary {
            background-color: var(--primary);
            border: none;
            font-weight: 600;
            border-radius: 0;
        }
        
        small {
            font-size: 0.8rem;
            color: #444;
        }

        .product-image {
            max-width: 90px;
            height: auto;
            display: block;
            margin-bottom: 1rem;
            position: absolute;
            right:-10px;
            top: -40px;
            rotate: 15deg;
            filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
            
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--secondary);
            color: var(--white);
            font-weight: 600;
        }


        .accordion-body {
            text-wrap: balance;
            
            background-color: #edf8f6;
        }
        
        .card-body p {
            padding-right: 30px;
        }

        .feature-image {
            border-radius: 5px;
            height: auto;
            display: block;
            margin-bottom: 1rem;
            aspect-ratio: 2/3;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.4) saturate(1);
            transition: filter 1.3s;
            mix-blend-mode: multiply;

            @media screen and (max-width: 768px) {
                aspect-ratio: 1/1;

            }
        }
        .feature-image:hover {
            filter: grayscale(0%) contrast(1.2) saturate(1.2);
            /* transition property is inherited from .feature-image */
        }

        .balance-text {
            text-wrap: balance;
>>>>>>> main
        }