    body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: var(--light-bg, #f4f4f9);
    color: var(--text-color, #333);
    }

    h4 {
    color: var(--secondary-color, #0056b3);
    font-size: 1.8em;
    margin-bottom: 10px;
    }

    p {
    margin-bottom: 15px;
    }

    ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    }

    ul li {
    margin-bottom: 10px;
    }

    a {
    color: var(--secondary-color, #007bff);
    text-decoration: none;
    }

    a:hover {
    text-decoration: underline;
    }

    /* Poistetaan omat row ja col määrittelyt, koska käytetään Bootstrapin ruudukkoa */
    /* .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    }

    .col {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    } */

    /* Lisätään Bootstrap-yhteensopivat tyylit */
    .row.content-row {
    margin-left: 0;
    margin-right: 0;
    }

    /* Poistetaan korttimainen ulkoasu col-md-6 elementeiltä */
    .col-md-6 {
    padding: 15px;
    }

    img.responsive-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    margin-top: 10px;
    }

    figure {
    margin: 0;
    padding: 0;
    }

    figure img {
    max-width: 100%;
    height: auto;
    }

    footer {
    margin-top: 30px;
    text-align: center;
    color: #666;
    }