/* Two column stylesheet */

body {
	background-color: rgb(235, 235, 235);
	}	

.container {
	max-width: 950px; /* Or your desired maximum width */
	margin: auto;
	padding: 5px, 20px, 20px, 20px;
	}

.container600 {
 max-width: 600px; /* or any width you want */
 margin: 0 auto; /* centers the container */
 text-align: left; /* makes sure text is left-aligned */
}

header {
    text-align: center;
	}

h1 {
	font-size: 1.6em;
	text-align: center;
	}

h2 {
	color: black;
	font-size: 1.2em;
	text-align: center;
	}
	
h3 {
	font-size: 1em;
	line-height: .8em;
	margin-bottom: -.6em;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	color: #0000FF;
	}

h4 {
	font-size: .8em;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: black;
	}

.map-caption {
	font-size: .8em;
	margin-top: .2em;
	margin-bottom: .5em;
	text-align: center;
	font-weight: bold;
	}

.style1 {
	color: #9b9898;
	font-size: small;
	}

.style2 {
	color: #13157c;
	font-size: 1.2em;
	text-align: center;
	}

.style4 {
	font-size: 1.2em;
	color: #13157c;
	font-weight: bold;
	text-align: center;
	}

.style5 {
	color: #FF0000;
	font-weight: bold;
	}

.style-buy {
	font-size: 1.2em;
	color: #1113b3;
	font-weight: bold;
	text-align: center;
	}

ul.a {list-style-type: none;
    padding: 0px 10px 0em 20px;
    margin-top: 5px;
    margin-bottom: 1em;
    }
	
ul.spacing li {
	list-style-type: disc;
	margin-bottom: 1em;
    }

.video-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  	}	

.two-column {
	display: grid;
	gap: 30px;
	grid-template-columns: 2fr 1fr;
	align-items: start; /* keeps tops aligned */
}

.two-map {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	align-items: start; /* keeps tops aligned */
}
.two-column > :nth-child(2) {
 text-align: center;
}
.two-column > :nth-child(2) img {
 display: inline-block;
}

.two-column img,
.two-map img {
 display: block; /* avoids extra bottom gap from inline images */
 padding-bottom: 5px; /* or margin-bottom: 10px; */
}

/* Stack text and images on small screens */
@media (max-width: 600px) {
 .two-column {
 grid-template-columns: 1fr;
 }

 .two-column > div:last-child {
 justify-self: center; /* centers the picture column */
 text-align: center; /* optional: centers inline content like links/images */
 }
}

/* Make the images responsive */
.two-column img {
 max-width: 100%;
 height: auto;
 display: block;
}

.banner-img {
 display: block;
 width: 100%;
 height: auto;
}