body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light background color */
}

.wrapper {
    display: flex;
}

nav.sidebar {
    background-color: #0D47A1; /* Blue from logo */
    padding: 10px 0;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav.sidebar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
}

nav.sidebar ul li {
    display: block;
    margin: 10px 0;
    padding-left: 20px;
}

nav.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

nav.sidebar ul li a:hover {
    text-decoration: underline;
}

#google_translate_element {
    margin-top: 20px;
}

.content {
    margin-left: 220px; /* Adjust according to sidebar width */
    padding: 20px;
    flex-grow: 1;
}

.title {
    text-align: center;
    font-size: 28pt;
    color: #0D47A1; /* Blue from logo */
}

h1 {
    font-size: 20pt;
    color: #0D47A1; /* Blue from logo */
    margin-top: 20px;
}

h2 {
    font-size: 16pt;
    color: #0D47A1; /* Blue from logo */
    margin-top: 18pt;
}

h3 {
    font-size: 14pt;
    color: #FF6F00; /* Orange from logo */
    margin-top: 16pt;
}

ul {
    list-style-type: disc;
    margin-left: 40px;
}

ol {
    list-style-type: decimal;
    margin-left: 40px;
}

p {
    margin-bottom: 12pt;
    color: #333333; /* Dark gray for text */
}

strong {
    font-weight: bold;
    color: #0D47A1; /* Blue from logo */
}

img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
}

a {
    color: #0D47A1; /* Blue from logo */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
