body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header.title h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.menu {
    background-color: #0056b3;
    padding: 10px 0;
    margin-bottom: 20px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu ul li {
    padding: 5px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #00bfff;
}

.content {
    margin-bottom: 20px;
}

.content p {
    text-align: justify;
    margin-bottom: 15px;
    color: #555;
}

.image-01 {
    text-align: center;
    margin-bottom: 20px;
}

.image-01 img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-01 p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.footer-nav {
    text-align: center;
    margin-top: 20px;
}

.footer-nav a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #003d80;
}
