/* CSS za Legal Stranice (Impressum, Privacy) */
.legal-content-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-heading {
    font-size: 18px;
    font-weight: 700;
    color: #071c1f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-sub-heading {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.legal-text strong {
    color: #333;
}

.legal-link {
    color: #9E9270;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.legal-link:hover {
    color: #071c1f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content-wrapper {
        padding: 30px;
    }
}