body {
  	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  	font-size: 16px;
  	line-height: 1.6;
  	color: #1F2E45; 
	margin: 0;
}

h1, h2, h3 {
  	font-weight: 600;
  	letter-spacing: -0.01em;
}

strong {
  	font-weight: 600;
}

a {
  color: #1F2E45;
  text-decoration: underline;
}

a:hover {
  color: #4E7F4A;
}

.td {
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.hr {
	height: 0.5px;
	border-width:0;
	color:#4E7F4A;
	background-color:#4E7F4A;
}

ul {
	list-style-type:disc"
}

img {
  	max-width: 100%;
  	height: auto;
	display: block;
}

.profile-photo {
  	width: 160px;
  	height: 160px;
  	border-radius: 50%;
  	object-fit: cover;
  	display: block;
}

.container {
  	width: 100%;
  	max-width: 792px;
  	margin: 0 auto;
  	border-collapse: collapse;
}

/* Banner spacing */
.banner {
 	width: 100%;
}

.who {
  display: flex;
  align-items: center;
  gap: 32px;
}

.who-text {
  flex: 1;
}

.who-photo {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  table table tr {
    display: block;
  }

  table table td {
    display: block;
    width: 100%;
  }

  .who {
    flex-direction: column;
    text-align: left;
  }

  .profile-photo {
    width: 120px;
    height: 120px;
  }

  .tagline {
    font-size: 12px;
    line-height: 1.2;
  }

}