/* General Styles */


#searchPub {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
#searchPub:focus {
    border-color: #003366;
    box-shadow: 2px 2px 10px rgba(0, 51, 102, 0.3);
    outline: none;
  }
body {
	background: linear-gradient(to bottom, #F5F5F5, #ffffff);
	font-family: 'Latin Modern Roman', Georgia, serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	text-align: justify;
	hyphens: auto;
  }

  h1, h2, h3, h4, h5, h6 {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	margin-top: 1em;
	margin-bottom: 0.5em;
  }
  
  h1 {
	font-size: 2.5rem;
	text-align: center;
  }
  
  h2 {
	font-size: 2rem;
	/* border-bottom: 2px solid #a00; */
	padding-bottom: 0.3em;
  }
  
  a, a:visited {
	color: #003366;
	text-decoration: none;
	font-weight: bold;
  }
  
  a:hover {
	color: #145392;
	text-decoration: underline;
  }
  
  ul {
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 1.5em;
  }
  
  .center {
	text-align: center;
	display: block;
	margin: 0 auto;
  }
  
  /* Layout */
  .container {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 20px;
	align-items: start;
	margin-bottom: 1em;
  }
  
  .image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* Navigation */
  nav ul {
	list-style: none;
	padding: 0;
	text-align: center;
	margin: 10px 0;
  }
  
  nav ul li {
	display: inline;
	margin: 0 10px;
  }
  
  nav ul li a {
	font-weight: bold;
  }
  
  /* Call-to-Action Button */
  .cta {
	text-align: center;
	margin: 1em 0;
	margin-bottom: 2em;
  }
  
  .cta-button {
	display: inline-block;
	padding: 6px 60px;
	background-color: #003366;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
  }
  
  .cta-button:hover {
	background-color: #366ba0;
	color: white;
  }
  
  /* Footer */
  footer {
	text-align: center;
	margin-top: 5em;
	padding: 1em 0;
	border-top: 1px solid #ccc;
	font-size: 0.9em;
	color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.container {
	  grid-template-columns: 1fr;
	}
  
	h1 {
	  font-size: 2rem;
	}
  
	h2 {
	  font-size: 1.5rem;
	}
  }