body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
}
.container {
    max-width: 850px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}
.logo {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}
.return-link {
    font-size: 16px;
    text-decoration: none;
    color: #007bff;
    display: flex;
    align-items: center;
}
.return-link img {
    margin-right: 5px;
}
h1 {
    font-weight: 700;
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}
p {
    line-height: 1.6;
    margin: 15px 0;
    color: #555;
}
h2 {
    font-weight: 700;
    font-size: 22px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}
ul {
    padding-left: 20px;
    margin: 10px 0;
    color: #555;
}
ul li {
    margin-bottom: 10px;
}
.button-container {
    margin: 20px 0;
    text-align: center;
}
.button-container a {
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}
.button-container a:hover {
    background-color: #0056b3;
}
.divider {
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}
footer {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    border-radius: 8px;
}
.related-articles {
    padding: 15px;
}
.related-articles h3 {
    margin-top: 0;
    font-weight: 700;
    font-size: 18px;
}
.related-articles ul {
    list-style-type: none;
    padding-left: 0;
}
.related-articles li {
    margin: 10px 0;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.related-articles li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}
.related-articles li a:hover {
    color: #0056b3;
}
.related-articles li a.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
}
.related-articles li a.read-more:hover {
    color: #0056b3;
}
.footer-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}