* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url('https://example.com/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

header {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('images/pipette.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

section {
    margin: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}



.service {
    text-align: left; /* Align text to the left */
    margin-bottom: 20px;
}

.service-image {
    float: right; /* Float the image to the right */
    margin-left: 20px; /* Optional margin for spacing */
    width: 30%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.contact-image {
    float: right; /* Float the image to the right */
    margin-left: 20px; /* Optional margin for spacing */
    width: 30%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}
