body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8;
    color: #222;
}

header {
    background: #800000;
    color: #fff;
    padding: 24px 0 12px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 6px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

nav ul li a:hover,
nav ul li a:focus {
    background: #a83232;
}

.contact-info {
    position: absolute;
    top: 12px;
    right: 32px;
    font-size: 1em;
    color: #fff;
    z-index: 2;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #ffd700;
}

.container {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background: #fff;
    padding: 32px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
}

main h2 {
    margin-top: 0;
    color: #800000;
    font-size: 2em;
}

main p {
    font-size: 1.2em;
    margin-top: 18px;
}

.logo {
    position: absolute;
    top: 10px;
    left: 24px;
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #ffd700;
}

footer {
    background: #800000;
    color: #fff;
    text-align: center;
    padding: 28px 0 18px 0;
    margin-top: auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 0; /* Remove any bottom margin */
}

.footer-links {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

.footer-social img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    transition: box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.footer-social a:hover img {
    box-shadow: 0 2px 8px #ffd700;
}

.footer-copy {
    font-size: 0.95em;
    color: #eee;
    margin-top: 8px;
}

.menu-pdf-link {
    display: inline-block;
    margin: 18px 0 0 0;
    padding: 10px 28px;
    background: #800000;
    color: #ffd700;
    border-radius: 6px;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.menu-pdf-link:hover {
    background: #a83232;
    color: #fff;
}

.home-images {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-main-img {
    max-width: 100%;
    max-height: 340px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    object-fit: cover;
}
