body {
  background-color: #FFFFFF; /* White background */
  color: #003366; /* Dark blue font color */
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0; /* Remove default body margin */
}

header, main, footer {
  width: 100%;
  max-width: 600px; /* Adjust the value based on your design preferences */
  padding: 20px;
  box-sizing: border-box;
}

header img {
  max-width: 100%; /* Adjust the value based on your preference */
  height: auto;
}

main {
  display: flex;
  flex-wrap: wrap; /* Allow service sections to wrap on smaller screens */
  justify-content: center;
  align-items: center;
}

section {
  flex: 0 0 50%; /* Adjust the value based on the desired number of columns */
  padding: 10px;
  text-align: center;
}

a {
  color: #003366; /* Link color */
  text-decoration: none; /* Remove underline */
}

a:hover {
  text-decoration: underline; /* Add underline on hover if desired */
}

/* Add media queries for mobile responsiveness */
@media (max-width: 600px) {
  section {
    flex: 0 0 100%;
  }
}
/* Add more spacing between service sections */
section {
  margin-bottom: 50px; /* Adjust the value based on your preference */
}

/* Add media queries for mobile responsiveness */
@media (max-width: 600px) {
  section {
    margin-bottom: 10px; /* Adjust the value based on your preference */
  }
}

footer {
  text-align: center;
}

footer a {
  font-size: 16px; /* Adjust the font size as needed */
  margin: 0 10px;
}

/* Add styles for the service section */
.service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.service-section img {
  width: 100px; /* Adjust the width based on your preference */
  height: auto;
  margin-bottom: 10px; /* Add spacing between the image and text */
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-section {
  flex: 0 0 50%;
  padding: 10px;
  text-align: center;
}

/* Media query for screens with a maximum width of 600px */
@media (max-width: 600px) {
  .service-section {
    flex: 0 0 100%;
  }
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-section{
  flex: 0 0 100%;
  padding: 5px; /* Increase the padding for more spacing around the services */
  text-align: center;
  font-size: 16px; /* Adjust the font size as needed */
}

.service-section {
  flex: 0 0 100%;
  padding: 5px; /* Increase the padding for more spacing around the services */
  text-align: center;
  font-size: 18px; /* Adjust the font size as needed */
}

.service-section img {
  width: 250px; /* Adjust the width of the images based on your preference */
  height: 250px; /* Adjust the height of the images based on your preference */
  margin-bottom: 10px; /* Add spacing between the image and text */
}

/* Add your other CSS styles here */

body {
  font-size: 18px; /* Increase the base font size for better readability on mobile */
}

img {
  max-width: 100%; /* Make sure images don't exceed the width of the viewport */
  height: auto;
}

@media screen and (max-width: 600px) {
  body {
    zoom: 150%; /* Increase the zoom level to make the website appear larger on mobile */
  }

  .service-section {
    padding: 20px; /* Increase the padding for more spacing around the services on mobile */
  }

  .service-section img {
    width: 180px; /* Increase the image size for better visibility on mobile */
    height: 180px;
  }

  h2 {
    font-size: 24px; /* Increase the font size for the service headings on mobile */
  }
}

/* Add your other CSS styles here */

/* Hamburger icon styles */
.menu-toggle {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.menu-icon {
  width: 100%;
  height: 100%;
}

/* Menu styles */
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #003366;
  z-index: 9998;
  max-width: 200px; /* Set a maximum width for the menu */
  overflow-y: auto; /* Add a vertical scrollbar if the menu overflows */
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 50px 0;
}

.menu li {
  text-align: center;
  padding: 15px;
}

.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ffd700; /* Change the color on hover as desired */
}

/* Show/hide menu styles */
.show-menu {
  display: block;
}