/* General Reset */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* White Background */
    color: #333;
    line-height: 1.6;
}

/* Header & Footer */
header, footer {
    background-color: #1e2a3a;
	background:url(pic/header.jpg) no-repeat;
	background-size: 100%;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem;
}

/* Typography */
h1, h2, h3 {
    color: #1e2a3a;
}

header h1, footer p {
    color: #ffffff; /* Text inside dark blocks remains white */
    margin: 0;
}

/* Navigation */
nav {
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

nav a:hover {
    background-color: #3e5871;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    min-height: 70vh;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }
    nav a {
        border-bottom: 1px solid #3e5871;
    }
}

.phone {
	width: 140px;
	color: white; 
    padding: 7px;     
    float: right; 
    position: relative; 
    top: 20px; 
    left: -70px;
    text-align:center; 
    font-size:14px;	
}

.logo{
	margin-left:30px;
}
.clear {
height:0px;
	clear: both;
}
.alert{	
	text-align: center;
	padding: 15px;
	color: white;
	background: red;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
}



