body {
  font-family: Segoe UI,sans-serif;
  margin: 0;
  padding: 0;
  
  background: linear-gradient(135deg, #e0f7fa 0%, #fdfbfb 100%);
    color: #333;
	
	user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
}

header {
  background: #004080;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

nav {
  background: linear-gradient(to right, #2c3e50, #3498db);
  display: flex;  
  padding: 0px 150px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  padding: 11px;
}
nav img{
	
    width: 236px;
    height: 43px;
    margin-top: 1px;
	margin-right:15px;
 
}
 .address{			
			background-color:#f5f5f5;
		 }
 .address p{
	margin-top:5px;
	margin-bottom:0px;
 }
nav a:hover {
 background: #0059b3;
 
}

.content {
  padding:20px 50px;
  background: white;
  flex: 1;
 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin: 0px 150px 2px 150px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 1rem;
 
}

button {
  background-color: #004080;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #002244;
}
 @media (max-width: 992px) {
	nav {
		flex-direction: column;
		align-items: center;
	}
	.content{
		margin:20px 50px;
	 }


}