html, body {
    height: 100%;
}

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header img {
    height: 60px;
    width: auto;
}

h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 300;
}

main {
    padding: 20px;
    flex: 1;
}

h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

p {
    margin: 10px 0;
}

footer {
    background-color: #f8f8f8;
    padding: 10px;
    text-align: center;
    font-size: 0.9em;
}

a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
