
.content-document {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.content-document h2 {
    font-size: 1.6em;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    margin-top: 40px;
    margin-bottom: 25px;
}

.content-document p {
    margin-bottom: 1em;
}

.content-document a {
    color: #0056b3;
}

/* --- Styl dla pola informacyjnego (info-box) --- */
.info-box {
    background-color: #e7f5ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
}

.info-box-icon {
    font-size: 2em;
    color: #007bff;
    margin-right: 20px;
    margin-top: 5px;
}

.info-box h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    border-bottom: none;
    padding-bottom: 0;
}

.info-box p {
    margin-bottom: 0.5em;
}

/* --- Styl dla list dokumentów --- */
.document-list {
    list-style-type: none;
    padding-left: 0;
}

.document-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #007bff;
    position: absolute;
    left: 0;
    top: 12px;
}

.document-list li a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.document-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}