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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.8;
    color: #555;
    background: #fff;
}

/* Header & Navigation */
.header {
    background: #333 url('TempHeader1.jpg') center top no-repeat;
    background-size: auto 100%;
    min-height: 120px;
    border-bottom: 5px solid #9966cc;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #777;
    font-size: 0.95rem;
    transition: color 0.3s, background 0.3s;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #777;
}

/* Links */
a {
    color: #555;
    transition: color 0.3s;
}

a:hover {
    color: #333;
}

/* Section Styling */
section {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

section > p {
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
}

/* Contact */
.contact .email {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #333;
    color: #777;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #444;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}
