body {
    font-family: 'Roboto', sans-serif; /* Или другой выбранный вами шрифт */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 10px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Infobox Styles */
.infobox {
    width: 300px;
    float: right;
    margin-left: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.infobox h2 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.infobox-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Card Styles */
.card {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Link Styles */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* List Styles */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Sources Styles */
.sources {
    margin-top: 30px;
    font-size: 0.9em;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 10px auto;
        padding: 10px;
    }

    .infobox {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
}