body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 20px;
}

nav {
    background-color: #2c3e50;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: bold;
}

/* Additional styles for the updated navigation bar */
.logo {
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.footer-container {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

  /* Styles for service rectangles */
  /* Styles for the service rectangles */
  .service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    position: center;
}

.service {
    flex: 0 0 23%; /* Adjust the width as needed, leaving some space for margins */
    background-color: #f0f0f0; /* Grey background */
    border: 2px solid transparent; /* Transparent border */
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

   /* Styles for the contact form */
   .contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f0f0f0; /* Grey background */
    border: 2px solid transparent; /* Transparent border */
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

button {
    background-color: #2ecc71; /* Green color for the button */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #27ae60; /* Darker green color on hover */
}

  /* Styles for the conditions and process section */
  .conditions-section {
    margin: 60px;
    padding: 20px;
    background-color: #f0f0f0; /* Grey background */
    border: 2px solid transparent; /* Transparent border */
    border-radius: 10px;
    color: #333;
}
