<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> body {
            margin: 0;
            padding: 0;
            font-family: 'Comic Sans MS', sans-serif;
            position: relative;
            overflow-y: auto; /* Ensure body can scroll */
        }

header {
            width: 100%;
            background-color: white; /* Change header background to white */
            color: black; /* Ensure text color is black */
            padding: 10px 0; /* Reduce padding for smaller header */
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2; /* Ensure header is in front */
        }
        .logo-container {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        .logo-image {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }
        .logo-text {
            font-size: 1.3em;
            font-weight: bold;
        }
        nav {
            position: relative;
            margin-right: 20px;
        }
        .menu-icon {
            cursor: pointer;
            display: none;
            font-size: 4em;
            position: relative;
          margin-left: 40%;
            margin-top: -7%;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            padding: 0;
            margin: 0;
        }
        nav ul li {
            padding: 0;
            margin: 0;
        }
        nav ul li a {
            color: black; /* Ensure link color is black */
            text-decoration: none;
            padding: 10px 15px; /* Increase padding for menu items */
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        nav ul li a:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }
        @media only screen and (max-width: 900px) {
            .menu-icon {
                display: block;
            }
            nav ul {
                flex-direction: column;
                align-items: flex-end; /* Align items to the right */
                position: fixed; /* Fix position to the right side */
                top: 50px; /* Position menu below header */
                right: 0;
                background-color: white; /* Ensure background color is white */
                display: none;
                width: 200px; /* Set a fixed width */
                padding: 10px; /* Add padding */
                z-index: 1; /* Ensure menu is in front */
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add box shadow for better visibility */
            }
            nav ul li {
                margin: 10px 0;
            }
            nav ul.show {
                display: flex;
            }
        }
        @media only screen and (max-width: 500px) {
            .logo-text {
                font-size: 1.2em;
            }
            .service-image {
                width: 80px;
            }
            .service-tab h2 {
                font-size: 1.5em;
            }
            .service-info {
                top: calc(100% + 20px);
                width: 95%;
            }
        }
.background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
.content {
    background: rgba(245, 245, 220, 0.8); /* Beige background color */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 57%; /* Adjusted width for better display */
    height: 300px; /* Fixed height */
    display: flex-end;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 30%;
    margin-left: 25%;
    bottom: 0;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 15px 30px; /* Increased padding for a larger button */
    font-size: 18px; /* Larger font size for the button */
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}
</pre></body></html>