@charset "UTF-8";
/* CSS Document */
body {
  font-family:Arial, sans-serif;
  color: #333;
  background: white;
  margin: 10px; 
  padding-top:30px; 

}



nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: black;
  padding: 0.5rem 1.2rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
  font-size: 1.1rem;
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}

nav ul {
  flex: 2;
  display: flex;
  justify-content: center;  /* ✅ center the links */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
transform: translateX(-27%); /* <<< shift a little to the left */
}

nav a {
  color:black;
  text-decoration: none;
  font-weight: none;
}

nav a.active {
  border-bottom: 1px solid black; 
  padding-bottom: 5px;            
}


/* Main container */
.container {
  font-family:Arial, sans-serif;          /*"Courier New", Courier, monospace;*/ 
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.left {
  flex: 2;
}

.right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.right img {
  max-width: 600px;
  height: auto;
  padding-top:30px;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #444; /* thin line */
  padding-bottom: 1px;
  font-weight:500; 
  font-family:"Times New Roman", "serif"; 
}


p {
  margin: 4px 0;
}

.intro p {
  margin-bottom: 50px; /* space after intro */
}

.columns {
 column-count: 2;
  column-gap: 40px;
}

 .column h2 {
  margin-bottom: 8px;
}

.column p:last-child {
  margin-bottom: 0.5px; /* empty line after each section */
}

