body {
	 /* android friendly fonts  */
    font-family: Verdana,  sans-serif;
	background: linear-gradient(to right, #3a7d8a, #FFFFFF, #3a7d8a);
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

/* header  */
header {
	background-color: #f5f5f5;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
}

header h1 {
	color: #2c4f6f;
	margin: 0;
	font-size: 32px;
	flex: 1;
	text-align: center;
}



/* navigation  */
nav {
	background-color: #2c4f6f;
	padding: 0;
}

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

nav li {
	display: inline-block;
}

nav a {
	display: block;
	color: #f09631;
	text-decoration: none;
	padding: 15px 20px;
	font-weight: bold;
}

nav a:hover {
	background-color: #f09631;
	color: #2c4f6f;
}

/* main content  */
main {
	padding: 20px;
	min-height: 400px;
}

h2 {
	font-size: 28px;
	font-weight: bold;
	color: #2c4f6f;
	border-bottom: 3px solid #f09631;
	padding-bottom: 10px;
}

h3 {
	color: #e59742;
}

p {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
}

/* images  */
.logo {
	width: 250px !important;
	max-width: none !important;
	min-width: 220px !important;
	height: auto !important;
}
.washer-image {
	float: right;
	width: 350px;
	margin-left: 20px;
	margin-bottom: 10px;
	border: none;
	border-radius: 10px;
}


/* table */
table {
	width: 80%;
	margin: 20px auto;
	border-collapse: collapse;
	border: 2px solid #2c4f6f;
}

th {
	background-color: #2c4f6f;
	color: white;
	padding: 12px;
	text-align: left;
}

td {
	border: 3px solid #e59742;
	padding: 10px;
}

tr:nth-child(even) {
	background-color: #f5f5f5;
}

caption {
	font-size: 24px;
	color: #2c4f6f;
	font-weight: bold;
	margin: 10px;
}

/* form */
form {
	width: 80%;
	margin: 20px auto;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.95);
	border: 3px solid #e59742;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

label {
	display: block;
	font-weight: bold;
	color: #2c4f6f;
	margin-top: 15px;
	margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 10px;
	border: 2px solid #ffecd1;
	border-radius: 5px;
	background: linear-gradient(135deg, #fff8f0 0%, #f0f8ff 100%);
	box-sizing: border-box;
	font-family: Arial;
}

.textInput:hover {
    border-color: #e59742;
}

input:focus,
textarea:focus {
	background-color: #fff4e6;
	border-color: #f09631;
	outline: none;
}

input[type="submit"] {
	background-color: #f09631;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;

}

input[type="submit"]:hover {
	background-color: #e59742;
}

/* video  */
.video-container {
	text-align: center;
	margin: 30px 0;
}

iframe {
	border: 3px solid #2c4f6f;
	border-radius: 10px;
}

/*footer */
footer {
	background-color: #2c4f6f;
	color: white;
	text-align: center;
	padding: 15px;
	border-radius: 0 0 7px 7px;
}

footer a {
	color: #f09631;
	text-decoration: none;
	font-weight: bold;
}

footer a:hover {
	color: #e59742;
}



/* color*/
/*
Dark Blue: #2c4f6f
Teal: #3a7d8a
Light Orange: #e59742
Dark Orange: #f09631
*/
