@charset "utf-8";
/* CSS Document */

/* --- Basic Styles --- */

html {
    font-size: 16px /* STD SIZE */
}	
	
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

h1 {
    margin: 0;
}

h2 {
    color: #000;
	family: Verdana, sans-serif;
    size: 1rem;
	weight: bold;
    margin: 0;
}

h3 {
    color: #000;
	family: Verdana, sans-serif;
    size: 1rem;
	weight: bold;
    margin: 0;
}

p {
    color: #000;
	family: Verdana, sans-serif;
    size: 1rem;
	font-weight: normal;
    margin-top: 0;
	margin-bottom: 10px;
}

p2 {
    color: #b8b8b8;
	family: Verdana, sans-serif;
    size: 1rem;
	font-weight: normal;
    margin-top: 0;
}

p3 {
    color: #000;
	family: Verdana, sans-serif;
    size: 1rem;
	font-weight: bold;
    margin-top: 0;
	margin-bottom: 10px;
}

p4 {
    color: #737373;
	family: Verdana, sans-serif;
    size: 1rem;
	font-weight: normal;
	font-style: italic; 
    margin-top: 0;
	margin-bottom: 10px;
}

p5 {
    color: #737373;
	family: Verdana, sans-serif;
    size: 1rem;
	font-weight: normal;
    margin-top: 0;
	margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #737373;
}

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

.tab-space {
  margin-left: 2rem; /* Adjust the value as needed for your tab size */
}

.tab-space2 {
  margin-left: 1rem; /* Adjust the value as needed for your tab size */
}

ul {
  padding-left: 40px; /* Adjust the value as needed */
  list-style-type: square;
}

}/* Default link style (optional) */
a {
	font-family: Arial;
}


/* First link style */
a.main {
    color: #3eb5de;
    font-weight: bold;
	font-size: 1rem;
	text-decoration: none;
}

/* Second link style */
a.menu {
    color: #fff;
    text-decoration: none;
}

/* Third link style */
a.intext {
    color: #3eb5de;
    text-decoration: none;
}

/* Hover effects (optional) */
a.main:hover {
    color: #8be8ff;
	text-decoration: none;
}

a.menu:hover {
    color: #b8b8b8;
	text-decoration: none;
}

a.intext:hover {
    color: #8be8ff;
	text-decoration: none;
}



/* --- Responsive Layout --- */

* {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}


        
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.one-column {
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.one-column2 {
    text-align: left;
    padding: 0px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
}
        
.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-bottom: 20px;
}
        
.left-column {
    flex: 1;
    min-width: 250px;
    text-align: right;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}
        
.right-column {
    flex: 1;
    min-width: 250px;
    text-align: left;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

/* --- Media Queries for Responsiveness --- */

/* Medium devices (tablets) */        
@media (max-width: 768px) {
	.two-columns {
    	flex-direction: column;
}
            
.left-column, .right-column {
    text-align: center;
	}
}

/* NOT SURE ABOUT LARGE NOW */

/* Large devices (desktops) */
@media (min-width: 992px) {
    .container {
        width: 80%; /* Slightly wider container on large screens */
    }
}