/* --- Styles specific to polityka-prywatnosci.html --- */

/* Content Section Styling */
.policy-content-section {
    background-color: #fff;
    padding: 50px 0;
    border-top: 1px solid #eee; /* Optional */
    border-bottom: 1px solid #eee; /* Optional */
    margin: -1px 0; /* Adjust slightly if double borders appear */
}

.policy-content-section h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    border-bottom: 2px solid #002855;
    padding-bottom: 0.3em;
    font-size: clamp(1.4em, 3vw, 1.8em);
    color: #002855;
}

.policy-content-section h2:first-of-type {
    margin-top: 0;
}

.policy-content-section p,
.policy-content-section li {
    margin-bottom: 1em;
    line-height: 1.7;
    color: #444;
}

.policy-content-section ul {
    list-style: disc;
    padding-left: 30px;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.policy-content-section ul ul { /* Nested lists */
    list-style: circle;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
    padding-left: 25px;
}

.policy-content-section ul ul li {
     margin-bottom: 0.5em;
}

.policy-content-section li strong {
    color: #002855;
    font-weight: 600;
}

/* Special list for contact details */
.policy-content-section .contact-list {
    list-style: none;
    padding-left: 0;
}

.policy-content-section .contact-list li {
    margin-bottom: 0.5em;
}
.policy-content-section .contact-list a {
     word-break: break-all;
}

/* Styling for the last updated date */
.policy-content-section .final-date {
    margin-top: 3em;
    font-style: italic;
    text-align: right;
    color: #666;
    font-size: 0.9em;
}

/* Removed the style for checkmarks as they are no longer in HTML */
/*
.policy-content-section ul li strong::before {
     content: "✅";
     margin-right: 0.5em;
 }
*/

 /* Responsive */
 @media (max-width: 767px) {
    .policy-content-section h2 {
        font-size: clamp(1.3em, 4vw, 1.6em);
    }
    .policy-content-section ul {
         padding-left: 20px;
    }
    .policy-content-section ul ul {
         padding-left: 20px;
    }
 }