        :root {
            --primary-rainbow: #ff4a5a;
            --river-blue: #a3e2fc;
            --soft-yellow: #fef5c9;
            --dark-text: #333333;
        }

        body {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', Arial, sans-serif;
            background: #f0faff url('rainbowRiver-Girl.png') no-repeat bottom right;
            background-size: 250px;
            background-attachment: fixed;
            color: var(--dark-text);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(135deg, var(--river-blue), #ffffff);
            padding: 20px;
            text-align: center;
            border-bottom: 5px solid #ffcd3a;
        }

        .logo-container img {
            max-width: 100%;
            height: auto;
            max-height: 180px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            /* Give some space on the right on large monitors so the background image doesn't overlap text */
            padding-right: 220px; 
        }

        @media (max-width: 768px) {
            .container { padding-right: 20px; }
            body { background-image: none; } /* Hide heavy illustration background on small screens */
        }

        .intro {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            border-left: 8px solid #ff4a5a;
        }

        h2 {
            color: #ff6f61;
            font-size: 1.8em;
            margin-top: 0;
        }

        /* Products Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            border: 2px solid #e2f0d9;
            text-align: center;
            padding: 20px;
            transition: transform 0.2s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card h3 {
            margin: 10px 0;
            color: #4a90e2;
        }

        .price-badge {
            display: inline-block;
            background-color: #ffe066;
            color: #4a3e00;
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .ingredients-list {
            font-size: 0.85em;
            color: #666;
            background: #fdfdfd;
            padding: 10px;
            border-radius: 8px;
            border: 1px dashed #ddd;
            text-align: left;
        }

        /* Form Styling */
        .order-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border: 2px solid var(--river-blue);
        }

        .form-group {
            margin-bottom: 18px;
        }

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            box-sizing: border-box;
            font-size: 1em;
        }

        input:focus, select:focus, textarea:focus {
            border-color: #ff6f61;
            outline: none;
        }

        button {
            background: linear-gradient(to right, #ff4a5a, #ffcd3a);
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1.1em;
            font-weight: bold;
            border-radius: 25px;
            cursor: pointer;
            width: 100%;
            box-shadow: 0 4px 10px rgba(255, 74, 90, 0.3);
            transition: opacity 0.2s;
        }

        button:hover {
            opacity: 0.9;
        }

        .alert {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            font-size: 0.9em;
            color: #777;
            background-color: #eaf6ff;
            margin-top: 50px;
            border-top: 3px solid var(--river-blue);
        }