﻿/* Modernized and Formalized Styles */
body {
    font-size: 16px;
    color: #333333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Logo container and centering */
a picture {
    display: block;
    text-align: center;
    margin: 20px auto;
    width: 100%;
}

/* Logo sizing for desktop */
picture img, .center1 {
    max-width: 300px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive logo sizing */
@media (min-width: 650px) {
    picture img, .center1 {
        max-width: 400px;
        max-height: 100px;
    }
}

@media (max-width: 464px) {
    picture img, .center1 {
        max-width: 250px;
        max-height: 60px;
    }
}

.boxtitle {
    color: #333333; /* Neutral dark gray */
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 2px solid #cccccc;
}

.boxsummary {
    color: #555555; /* Slightly lighter gray */
    line-height: 1.6em;
    margin: 0;
    padding: 10px;
}

ul.vmenu li {
    background: none;
    border: 0;
    margin: 5px 0;
}

ul.vmenu a {
    font-size: 16px;
    color: #333333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

ul.vmenu a:hover {
    background-color: #e0e0e0; /* Light gray hover effect */
}

.header {
    height: 100px;
    background-color: #ffffff;
    border-bottom: 1px solid #cccccc;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.footer {
    background-color: #ffffff;
    border-top: 1px solid #cccccc;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #777777;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    ul.vmenu a {
        font-size: 14px;
        padding: 8px 10px;
    }
}