/* General Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    position: relative;
    text-align: center;
}

header .logo {
    position: absolute;
    top: -16px;
    left: 0;
    max-width: 96px;
    height: auto;
}

header .logo1 {
    position: absolute;
    top: -16px;
    right: 0;
    max-width: 96px;
    height: auto;
}

header h1 {
    margin: 0;
    padding-left: 140px;
    line-height: 1.2;
}

header p {
    margin: 0.5rem 0 0;
    padding-left: 140px;
}

/* Navigation */
nav {
    background-color: #555;
    padding: 0.5rem 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}

nav a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

nav a:focus {
    outline: 2px solid #ffcc00;
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2rem;
}

h2 {
    color: #333;
    border-bottom: 2px solid #555;
    padding-bottom: 0.5rem;
}

/* List Styling */
ul {
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #333;
    color: white;
    margin-top: 2rem;
}

footer .logo2 {
    position: absolute;
    top: -16px;
    right: 0;
    max-width: 200px;
    height: auto;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin-right: 150px; /* Reduced for better inline spacing */
	text-decoration: underline;
	font-weight: bold;
	font-size: 1.5rem;
}

footer a:hover {
    
    color: #white;
	cursor: pointer;
	
}

/* Bold Contact Us Section */
footer p:first-of-type {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Image Styling */
img {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    height: auto;
}

/* Buttons */
button {
    background-color: #555;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ffcc00;
}
