        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f4f4f4;
        }
        header, section, footer {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .logo img {
            width: 150px;
            height: auto;
        }
        h1, h2 {
            color: #333;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        ul li {
            background: #e9e9e9;
            margin: 8px 0;
            padding: 10px;
            border-left: 5px solid #333;
        }
        a {
            color: #00a7e0;
            text-decoration: none;
        }
        a:hover {
            color: #005670;
        }
        .testimonials blockquote {
            font-style: italic;
            background: #e9e9e9;
            border-left: 10px solid #333;
            margin: 10px;
            padding: 10px;
        }
        footer {
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
            background: #333;
            color: #fff;
        }
        .partners h3, .partners li {
            margin-top: 5px;
        }
        .svg-inline--fa {
            width: 24px;
            height: 24px;
        }
        form {
            background: #f8f8f8;
            padding: 20px;
            margin-top: 20px;
        }
        form label, form input, form select, form textarea {
            display: block;
            width: 90%;
            margin: 10px auto;
        }
        form input, form select, form textarea {
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        form input[type="submit"] {
            background: #333;
            color: white;
            border: none;
            cursor: pointer;
        }
        form input[type="submit"]:hover {
            background: #555;
        }
        
     #services-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around; 
        }
        
        
        .services-cols {
            padding: 15px;
            flex: 1 1 45%; /* Each box will take up 45% of the container width */
            margin: 10px; /* Optional: adds some space between the columns */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds shadow for better visibility */
            border: solid 1px black;
            border-radius: 2px;
            border-bottom: solid 3px black;  
        }

        .button1 {
            display: inline-block; /* Ensures the link behaves like a button */
            background-color: #FF8C00; /* Dark Orange as the primary background */
            color: white; /* Text color */
            padding: 10px 20px; /* Padding around the text */
            border: none; /* No border */
            border-radius: 5px; /* Rounded corners */
            font-size: 16px; /* Text size */
            text-align: center; /* Center text inside the link */
            text-decoration: none; /* No underline */
            cursor: pointer; /* Cursor indicates clickable */
            transition: background-color 0.3s; /* Smooth transition for background color */
        }

        .button1:hover {
            background-color: #FFA500; /* Lighter Orange on hover */
            color: white;
        }


        
        .process-cols {
            padding: 15px;
            flex: 1 1 100%; /* Each box will take up 45% of the container width */
            margin: 10px; /* Optional: adds some space between the columns */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds shadow for better visibility */
            border: solid 1px black;
            border-radius: 2px;
            border-bottom: solid 3px black;  
        }