
    body {
      background-color: #006481;
      color: white;
      font-family: Garamond, serif;
      margin: 0;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #navigation {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 40px;
    }

    #navigation a {
      color: white;
      text-decoration: none;
    }

    .nav-link {
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
	
    }

    #team-link {
      margin-right: 25px; /* Adjust this value to control the spacing between "Team" and "Pricing" */
    }


    #solution-link {
      margin-right: 25px; /* Adjust this value to control the spacing between "Solution" and "Contact Us" */
    }

    #contact-link {
      margin-left: auto; /* Push "Contact Us" to the right */
    }

 
#image-container {
  display: flex; /* or grid */
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  /* Add height to the container to control the visible background area */
  height: 600px; /* Adjust as needed */
}

#image-image {
  max-width: 100%;  /* Ensures the image doesn't overflow its container horizontally */
  max-height: 100%; /* Ensures the image doesn't overflow its container vertically */
  height: auto;     /* Maintains aspect ratio */
}


#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 25px;
	margin-top:35px;
	margin-bottom:25px;
}

.footer-link {
  margin: 0 10px;
  color: white;
  cursor: pointer;
}

    .modal {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: grey;
      padding: 20px;
      border-radius: 5px;
      text-align: center;
      overflow: auto;
      max-width: 80%;
      max-height: 80%;
    }

    .modal p {
      margin-bottom: 10px;
      color: white; /* Adjust color as needed */
    }

    .modal-button {
      background-color: #ff4d4d;
      color: white;
      cursor: pointer;
      width: 100%;
      padding: 8px;
      border: none;
      border-radius: 5px;
      text-transform: uppercase;
    }

.modal-close-button {
  	position: absolute;
    top: 10px; /* Adjust as needed */
    right: 10px;
}

@media only screen and (max-width: 480px) {
  

  body {
    background-color: #006481; /* Change the background color for mobile */
    font-size: 14px; /* Adjust font size for mobile */
    padding: 10px; /* Add padding for better spacing on mobile */
  }

  #navigation {
    margin-bottom: 20px; /* Reduce navigation margin for mobile */
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .nav-link {
    font-size: 12px; /* Adjust navigation link font size for mobile */
  }



#footer {
  display: flex;
  justify-content: center; /* Center-align items horizontally */
  align-items: center;
  background-color: transparent;
  padding: 25px;
  margin-top: 35px;
  margin-bottom: 25px;
}

.footer-link {
  margin: 0 10px;
  color: white;
  cursor: pointer;
	text-align: center;
}


  /* Add or modify any other styles as needed for mobile */
}


@media only screen and (min-width:481px) and (max-width: 1024px) {
  

  body {
    background-color: #006481; /* Change the background color for mobile */
    font-size: 14px; /* Adjust font size for mobile */
    padding: 10px; /* Add padding for better spacing on mobile */
  }

  #navigation {
    margin-bottom: 20px; /* Reduce navigation margin for mobile */
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .nav-link {
    font-size: 12px; /* Adjust navigation link font size for mobile */
  }



#footer {
  display: flex;
  justify-content: center; /* Center-align items horizontally */
  align-items: center;
  background-color: transparent;
  padding: 25px;
  margin-top: 35px;
  margin-bottom: 25px;
}

.footer-link {
  margin: 0 10px;
  color: white;
  cursor: pointer;
	text-align: center;
}

