/* /css/style.css */

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', Bookerly, Spectral, Literata, Merriweather, serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.content-container {
    width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 20px;
    padding: 20px;
}

.left-column, .right-column {
    padding: 10px;
}

.content-container ul {
    list-style-type: disc;
    margin-left: 20px;
}

.right-column ul {
    list-style-type: none;
    padding-left: 0;
}

.right-column li {
    margin-bottom: 8px;
    text-indent: -15px; /* Added text-indent */
    padding-left: 15px; /*Added padding-left*/
}

.right-column li::before {
    content: "-";
    margin-right: 5px;
}

.right-column strong {
    font-weight: bold;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .content-container {
        grid-template-columns: 100%;
        width: 95%;
    }
}
