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

        header {
            background: #f9f9f9;
            color: black;
            text-align: center;
        }

        header h1 {
            font-size: 1.5em;
            margin: 0;
            font-weight: normal;
            padding-left: 10px;
            padding-top: 10px;
            padding-bottom: 10px;
            color: black;    
        }

        header p {
            font-size: 1.2em;
            margin-top: 10px;
        }

        /* Section Styles */
        section {
            padding: 20px;
        }

        .about {
            /*margin: 0px;
            margin-bottom: 10px;    
            */    
        }        

        section h2 {
            margin: 0px;
            margin-bottom: 20px;      
            color: darkgoldenrod;
            margin-bottom: 20px;
            font-size: 1.3em;
            font-family: system-ui;
            width: fit-content;
            border-bottom-style: dotted;                   
        }

        section p {
            font-size: 1.1em;
            color: #555;
            margin: 0 auto;
            margin-bottom: 10px;
            font-family: cursive;    
        }

        section ul {
            list-style-type: none;
            padding: 0;
        }

        section ul li {
            margin: 10px 0;
            font-size: 1.1em;
            color: #333;
        }

        /* Text Alignments */
        /* Sections 2, 4, and 6 should have text aligned to the left */
        section.left-align {
            text-align: left;
            background: #FFFFDD;    
            max-width: 950px;    
        }

        /* Sections 3 and 5 should have text aligned to the right */
        section.right-align {
            margin-left: auto;
            background-color: #f9f9f9;
            max-width: 950px;   
        }

        section.project h2 {
            color: lightseagreen;    
        }

        section.description-section {
            padding-left: 20px;
            padding-top: 0px;
        }        

        /* Form Styles */
        .order-form {
            background-color: #ffffff;
            padding: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .order-form h3 {
            font-size: 1.5em;
            margin-top: 0px;
            color: #333;
            font-family: system-ui;    
        }

        .order-form input, .order-form select, .order-form textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            box-sizing: border-box;
        }

        .order-form textarea {
            resize: vertical;
            height: 150px;
        }

        .order-form button {
            background-color: #008CBA;
            color: white;
            padding: 15px 30px;lef
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 20px;
        }

        .order-form button:hover {
            background-color: #005f73;
        }

        .order-form .discount {
            font-size: 0.8em;    
        }        

        footer {
            color: black;
            text-align: center;
            padding: 20px;
        }

        footer a {
            color: #61dafb;
            text-decoration: none;
            margin: 0 10px;
        }

        /* Link Styles */
        a.software-link {
            color: #008CBA;
            text-decoration: none;
            font-weight: bold;
        }

        a.software-link:hover {
            text-decoration: underline;
        }

        .header-section-container {
            display: flex;
            align-items: start;
        }

        .image-section {
            /*width: auto;
            height: 100px;  */  
            padding: 0px;
            margin: 0px;
        }

        .slogan-section {
            /*margin: 0px;
            margin-top: 20px;
            padding: 0px;*/
            font-family: system-ui;    
        }

        img {
            /*max-width: 100%;
            height: 120px;*/
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .slogan-section h1 {
                font-size: 18px; /* Smaller font on mobile */
            }
        }
