
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
}
.logo {
    font-weight: bold;
    font-size: 24px;
    min-width: 140px;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
main {
    padding: 60px 80px 60px 180px;
}
h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}
p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
li {
    font-size: 18px;
    margin-bottom: 10px;
}
footer {
    text-align: center;
    padding: 6px;
    font-size: 8px !important;
    line-height: 1.2;
    color: #666;
    border-top: 1px solid #ddd;
    background-color: #fafafa;
}
